Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/config/src/main/resources/gui.conf
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ gui {
timetravel-enabled = ${?GUI_WORKFLOW_WORKSPACE_TIMETRAVEL_ENABLED}

# whether the Form View (a second, form-based view of a workflow) is enabled
form-view-enabled = false
form-view-enabled = true
form-view-enabled = ${?GUI_WORKFLOW_WORKSPACE_FORM_VIEW_ENABLED}

# Whether to connect to local or production shared editing server. Set to true if you have
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ class GuiConfigSpec extends AnyFlatSpec with Matchers {
ifUnset("GUI_WORKFLOW_WORKSPACE_TIMETRAVEL_ENABLED")(
GuiConfig.guiWorkflowWorkspaceTimetravelEnabled shouldBe false
)
// Form View ships disabled so merging the feature never turns it on; the final PR flips it.
// Form View is on by default now that the whole feature has landed.
ifUnset("GUI_WORKFLOW_WORKSPACE_FORM_VIEW_ENABLED")(
GuiConfig.guiWorkflowWorkspaceFormViewEnabled shouldBe false
GuiConfig.guiWorkflowWorkspaceFormViewEnabled shouldBe true
)
ifUnset("GUI_WORKFLOW_WORKSPACE_PRODUCTION_SHARED_EDITING_SERVER")(
GuiConfig.guiWorkflowWorkspaceProductionSharedEditingServer shouldBe false
Expand Down
Loading