File tree 5 files changed +8
-0
lines changed
5 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ batchActionsDisabled: false
20
20
startWorkflowDisabled : false
21
21
hideWorkflowQueryErrors : false
22
22
refreshWorkflowCountsDisabled : false
23
+ workflowCountGroupByExecutionStatusDisabled : false
23
24
auth :
24
25
enabled : false
25
26
providers :
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ batchActionsDisabled: {{ default .Env.TEMPORAL_BATCH_ACTIONS_DISABLED "false" }}
19
19
startWorkflowDisabled : {{ default .Env.TEMPORAL_START_WORKFLOW_DISABLED "false" }}
20
20
hideWorkflowQueryErrors : {{ default .Env.TEMPORAL_HIDE_WORKFLOW_QUERY_ERRORS "false" }}
21
21
refreshWorkflowCountsDisabled : {{ default .Env.TEMPORAL_REFRESH_WORKFLOW_COUNTS_DISABLED "false" }}
22
+ workflowCountGroupByExecutionStatusDisabled : {{ default .Env.TEMPORAL_WORKFLOW_COUNT_GROUP_BY_EXECUTION_STATUS_DISABLED "false" }}
22
23
cors :
23
24
cookieInsecure : {{ default .Env.TEMPORAL_CSRF_COOKIE_INSECURE "false" }}
24
25
allowOrigins :
Original file line number Diff line number Diff line change 65
65
HideWorkflowQueryErrors bool `yaml:"hideWorkflowQueryErrors"`
66
66
// Whether to disable refreshing workflow counts in UI
67
67
RefreshWorkflowCountsDisabled bool `yaml:"refreshWorkflowCountsDisabled"`
68
+ // Whether to enable the count group by execution status in UI
69
+ WorkflowCountGroupByExecutionStatusDisabled bool `yaml:"workflowCountGroupByExecutionStatusDisabled"`
70
+
68
71
// Forward specified HTTP headers from HTTP API requests to Temporal gRPC backend
69
72
ForwardHeaders []string `yaml:"forwardHeaders"`
70
73
HideLogs bool `yaml:"hideLogs"`
Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ export const fetchSettings = async (request = fetch): Promise<Settings> => {
40
40
hideWorkflowQueryErrors : ! ! settingsResponse ?. HideWorkflowQueryErrors ,
41
41
refreshWorkflowCountsDisabled :
42
42
! ! settingsResponse ?. RefreshWorkflowCountsDisabled ,
43
+ countGroupByExecutionStatus :
44
+ ! ! settingsResponse ?. WorkflowCountGroupByExecutionStatusDisabled ,
43
45
44
46
showTemporalSystemNamespace : settingsResponse ?. ShowTemporalSystemNamespace ,
45
47
notifyOnNewVersion : settingsResponse ?. NotifyOnNewVersion ,
Original file line number Diff line number Diff line change @@ -254,6 +254,7 @@ export type SettingsResponse = {
254
254
StartWorkflowDisabled : boolean ;
255
255
HideWorkflowQueryErrors : boolean ;
256
256
RefreshWorkflowCountsDisabled : boolean ;
257
+ WorkflowCountGroupByExecutionStatusDisabled : boolean ;
257
258
ShowTemporalSystemNamespace : boolean ;
258
259
NotifyOnNewVersion : boolean ;
259
260
FeedbackURL : string ;
You can’t perform that action at this time.
0 commit comments