diff --git a/common/config/src/main/resources/gui.conf b/common/config/src/main/resources/gui.conf index b49cc348ddd..509ec6ebdc3 100644 --- a/common/config/src/main/resources/gui.conf +++ b/common/config/src/main/resources/gui.conf @@ -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 diff --git a/common/config/src/test/scala/org/apache/texera/common/config/GuiConfigSpec.scala b/common/config/src/test/scala/org/apache/texera/common/config/GuiConfigSpec.scala index 45e4adecd40..c6aab016c05 100644 --- a/common/config/src/test/scala/org/apache/texera/common/config/GuiConfigSpec.scala +++ b/common/config/src/test/scala/org/apache/texera/common/config/GuiConfigSpec.scala @@ -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