Skip to content

Commit

Permalink
Update UI Server
Browse files Browse the repository at this point in the history
  • Loading branch information
temporal-data committed Jun 25, 2024
1 parent 77adacd commit 009d2b3
Show file tree
Hide file tree
Showing 202 changed files with 211 additions and 182 deletions.
1 change: 1 addition & 0 deletions config/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ workflowCancelDisabled: false
workflowSignalDisabled: false
workflowResetDisabled: false
batchActionsDisabled: false
startWorkflowDisabled: false
hideWorkflowQueryErrors: false
auth:
enabled: false
Expand Down
1 change: 1 addition & 0 deletions docker/config-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ workflowCancelDisabled: {{ default .Env.TEMPORAL_WORKFLOW_CANCEL_DISABLED "false
workflowSignalDisabled: {{ default .Env.TEMPORAL_WORKFLOW_SIGNAL_DISABLED "false" }}
workflowResetDisabled: {{ default .Env.TEMPORAL_WORKFLOW_RESET_DISABLED "false" }}
batchActionsDisabled: {{ default .Env.TEMPORAL_BATCH_ACTIONS_DISABLED "false" }}
startWorkflowDisabled: {{ default .Env.TEMPORAL_START_WORKFLOW_DISABLED "true" }}
hideWorkflowQueryErrors: {{ default .Env.TEMPORAL_HIDE_WORKFLOW_QUERY_ERRORS "false" }}
cors:
cookieInsecure: {{ default .Env.TEMPORAL_CSRF_COOKIE_INSECURE "false" }}
Expand Down
2 changes: 2 additions & 0 deletions server/api/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ type SettingsResponse struct {
WorkflowSignalDisabled bool
WorkflowResetDisabled bool
BatchActionsDisabled bool
StartWorkflowDisabled bool
HideWorkflowQueryErrors bool
}

Expand Down Expand Up @@ -139,6 +140,7 @@ func GetSettings(cfgProvider *config.ConfigProviderWithRefresh) func(echo.Contex
WorkflowSignalDisabled: cfg.WorkflowSignalDisabled,
WorkflowResetDisabled: cfg.WorkflowResetDisabled,
BatchActionsDisabled: cfg.BatchActionsDisabled,
StartWorkflowDisabled: cfg.StartWorkflowDisabled,
HideWorkflowQueryErrors: cfg.HideWorkflowQueryErrors,
}

Expand Down
2 changes: 2 additions & 0 deletions server/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ type (
WorkflowResetDisabled bool `yaml:"workflowResetDisabled"`
// Whether bulk/batch actions are enabled in the UI
BatchActionsDisabled bool `yaml:"batchActionsDisabled"`
// Whether start workflow is enabled in the UI
StartWorkflowDisabled bool `yaml:"startWorkflowDisabled"`
// Whether to hide server errors for workflow queries in UI
HideWorkflowQueryErrors bool `yaml:"hideWorkflowQueryErrors"`
// Forward specified HTTP headers from HTTP API requests to Temporal gRPC backend
Expand Down
1 change: 1 addition & 0 deletions ui/assets/local/_app/immutable/assets/43.a_FxgEKa.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions ui/assets/local/_app/immutable/assets/_page.a_FxgEKa.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions ui/assets/local/_app/immutable/assets/app.PwYUhz_Q.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ui/assets/local/_app/immutable/assets/app.U36hiA68.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion ui/assets/local/_app/immutable/assets/app.prG4r90H.css

This file was deleted.

1 change: 0 additions & 1 deletion ui/assets/local/_app/immutable/assets/app.vkDlcCXO.css

This file was deleted.

1 change: 0 additions & 1 deletion ui/assets/local/_app/immutable/assets/option.Bq1h13XX.css

This file was deleted.

1 change: 1 addition & 0 deletions ui/assets/local/_app/immutable/assets/option.lMhLC7Xo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
input.svelte-1lnmx7y{background-color:transparent;pointer-events:none;width:100%}
1 change: 1 addition & 0 deletions ui/assets/local/_app/immutable/assets/select.lMhLC7Xo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
input.svelte-1lnmx7y{background-color:transparent;pointer-events:none;width:100%}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion ui/assets/local/_app/immutable/chunks/alert.OuAo9zgW.js

This file was deleted.

Loading

0 comments on commit 009d2b3

Please sign in to comment.