diff --git a/common/config/src/main/resources/gui.conf b/common/config/src/main/resources/gui.conf index cccfe4a7d2b..7cb7fff6555 100644 --- a/common/config/src/main/resources/gui.conf +++ b/common/config/src/main/resources/gui.conf @@ -92,7 +92,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 e3d98d261a8..cfc978de3ab 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 @@ -62,9 +62,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