Skip to content

Commit 19bf0ad

Browse files
authored
Enable dev feature flag - labels reordering (#524)
1 parent 26a42ac commit 19bf0ad

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

deploy/charts/geti-components/chart/charts/configuration/values.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ log_level: "INFO"
1313
desired_disk_free: "30GB"
1414
render_gid: 0
1515
accelerator:
16-
type: 'cpu'
17-
name: ''
16+
type: "cpu"
17+
name: ""
1818
dataStoragePath: ""
1919

2020
global:
21-
serverAddress: ''
22-
grafana_enabled: ''
21+
serverAddress: ""
22+
grafana_enabled: ""
2323
s3_credentials_provider: local
2424
mongodb_credentials_provider: local
2525
mongodb_address: ""
@@ -68,6 +68,7 @@ feature_flags_data:
6868
"FEATURE_FLAG_REQ_ACCESS": "false"
6969
"FEATURE_FLAG_RETAIN_TRAINING_ARTIFACTS": "false"
7070
"FEATURE_FLAG_ASYNCHRONOUS_MEDIA_PREPROCESSING": "false"
71+
"FEATURE_FLAG_LABELS_REORDERING": "true"
7172

7273
bucket_name_compileddatasetshards: compileddatasetshards
7374
bucket_name_images: images

web_ui/packages/core/src/feature-flags/services/feature-flag-service.interface.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const DEV_FEATURE_FLAGS = {
3535
FEATURE_FLAG_MANAGE_USERS_ROLES: false,
3636
FEATURE_FLAG_REQ_ACCESS: false,
3737
FEATURE_FLAG_NEW_CONFIGURABLE_PARAMETERS: false,
38-
FEATURE_FLAG_LABELS_REORDERING: false,
38+
FEATURE_FLAG_LABELS_REORDERING: true,
3939
FEATURE_FLAG_TELEMETRY_STACK: true,
4040
FEATURE_FLAG_ANNOTATION_HOLE: false,
4141
// Only used for unit testing

0 commit comments

Comments
 (0)