Skip to content

Commit db4d4f5

Browse files
authored
Enable CGMES export (#471)
Signed-off-by: Etienne Homer <[email protected]>
1 parent 3ce38ff commit db4d4f5

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

src/components/dialogs/export-case-dialog.tsx

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -130,17 +130,11 @@ const ExportCaseDialog = (props: ExportCaseDialogProps) => {
130130
id: 'select-format',
131131
}}
132132
>
133-
{Object.keys(formats)
134-
.filter(
135-
(format) =>
136-
// Hide the CGMES item while waiting for the Fix of getIdentifiable on the back end
137-
format !== 'CGMES'
138-
)
139-
.map((formatKey) => (
140-
<MenuItem key={formatKey} value={formatKey}>
141-
{formatKey}
142-
</MenuItem>
143-
))}
133+
{Object.keys(formats).map((formatKey) => (
134+
<MenuItem key={formatKey} value={formatKey}>
135+
{formatKey}
136+
</MenuItem>
137+
))}
144138
</Select>
145139
<Stack
146140
marginTop="0.7em"

0 commit comments

Comments
 (0)