Commit b6ffd774 authored by jtc42's avatar jtc42
Browse files

Reordered GUI dict to match docs

parent be8d94e7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -105,9 +105,9 @@ extension_gui = {
    "forms": [  # List of forms. Each form is a collapsible accordion panel
        {
            "name": "Start a timelapse",  # Form title
            "isCollapsible": False,  # This form cannot be collapsed into an accordion
            "isTask": True,  # This forms submission starts a background task
            "route": "/timelapse",  # The URL rule (as given by "add_view") of your submission view
            "isTask": True,  # This forms submission starts a background task
            "isCollapsible": False,  # This form cannot be collapsed into an accordion
            "submitLabel": "Start",  # Label for the form submit button
            "schema": [  # List of dictionaries. Each element is a form component.
                {