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
6 changes: 6 additions & 0 deletions common/config/src/main/resources/gui.conf
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,12 @@ gui {
copilot-enabled = false
copilot-enabled = ${?GUI_WORKFLOW_WORKSPACE_COPILOT_ENABLED}

# whether the guided tutorial / Argus chat is enabled. Disable to remove
# the trophy launcher button, the welcome popover, and the in-tour Argus
# chat from the workspace entirely.
tutorial-enabled = true
tutorial-enabled = ${?GUI_WORKFLOW_WORKSPACE_TUTORIAL_ENABLED}

# the limit of columns to be displayed in the result table
limit-columns = 15
limit-columns = ${?GUI_WORKFLOW_WORKSPACE_LIMIT_COLUMNS}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ object GuiConfig {
conf.getInt("gui.workflow-workspace.active-time-in-minutes")
val guiWorkflowWorkspaceCopilotEnabled: Boolean =
conf.getBoolean("gui.workflow-workspace.copilot-enabled")
val guiWorkflowWorkspaceTutorialEnabled: Boolean =
conf.getBoolean("gui.workflow-workspace.tutorial-enabled")
val guiWorkflowWorkspaceLimitColumns: Int =
conf.getInt("gui.workflow-workspace.limit-columns")
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class ConfigResource {
),
"activeTimeInMinutes" -> GuiConfig.guiWorkflowWorkspaceActiveTimeInMinutes,
"copilotEnabled" -> GuiConfig.guiWorkflowWorkspaceCopilotEnabled,
"tutorialEnabled" -> GuiConfig.guiWorkflowWorkspaceTutorialEnabled,
"limitColumns" -> GuiConfig.guiWorkflowWorkspaceLimitColumns,
// flags from the auth.conf if needed
"expirationTimeInMinutes" -> AuthConfig.jwtExpirationMinutes
Expand Down
1 change: 1 addition & 0 deletions frontend/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"node_modules/jointjs/css/themes/default.css",
"node_modules/ng-zorro-antd/ng-zorro-antd.min.css",
"node_modules/ng-zorro-antd/resizable/style/index.min.css",
"node_modules/driver.js/dist/driver.css",
"src/styles.scss"
],
"scripts": ["./node_modules/marked/lib/marked.umd.js"],
Expand Down
3 changes: 3 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@
"@ngx-formly/ng-zorro-antd": "6.3.12",
"ai": "5.0.93",
"ajv": "8.10.0",
"canvas-confetti": "^1.9.4",
"concaveman": "2.0.0",
"d3-shape": "2.1.0",
"dagre": "0.8.5",
"driver.js": "^1.4.0",
"file-saver": "2.0.5",
"fuse.js": "6.5.3",
"html2canvas": "1.4.1",
Expand Down Expand Up @@ -101,6 +103,7 @@
"@nx/angular": "22.7.0",
"@schematics/angular": "21.2.8",
"@types/backbone": "1.4.15",
"@types/canvas-confetti": "^1.9.0",
"@types/concaveman": "1.1.6",
"@types/d3-shape": "2.1.2",
"@types/dagre": "0.7.47",
Expand Down
Loading
Loading