Skip to content

Commit d3d53bf

Browse files
authored
feat(app): add feat flag for csv file (#15330)
* feat(app): add feat flag for csv file
1 parent 442f5cc commit d3d53bf

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

app/src/assets/localization/en/app_settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"__dev_internal__protocolStats": "Protocol Stats",
44
"__dev_internal__enableRunNotes": "Display Notes During a Protocol Run",
55
"__dev_internal__enableQuickTransfer": "Enable Quick Transfer",
6+
"__dev_internal__enableCsvFile": "Enable CSV File",
67
"add_folder_button": "Add labware source folder",
78
"add_ip_button": "Add",
89
"add_ip_error": "Enter an IP Address or Hostname",

app/src/redux/config/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export const DEV_INTERNAL_FLAGS: DevInternalFlag[] = [
55
'protocolStats',
66
'enableRunNotes',
77
'enableQuickTransfer',
8+
'enableCsvFile',
89
]
910

1011
// action type constants

app/src/redux/config/schema-types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export type DevInternalFlag =
1212
| 'protocolStats'
1313
| 'enableRunNotes'
1414
| 'enableQuickTransfer'
15+
| 'enableCsvFile'
1516

1617
export type FeatureFlags = Partial<Record<DevInternalFlag, boolean | undefined>>
1718

0 commit comments

Comments
 (0)