Skip to content
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/components/directory-content-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
useSnackMessage,
VoltageInitParametersEditionDialog,
isProcessType,
SCProcessConfigEditionDialog,

Check failure on line 38 in src/components/directory-content-dialog.tsx

View workflow job for this annotation

GitHub Actions / build / build

'"@gridsuite/commons-ui"' has no exported member named 'SCProcessConfigEditionDialog'. Did you mean 'SAProcessConfigEditionDialog'?
} from '@gridsuite/commons-ui';
import type { CellClickedEvent } from 'ag-grid-community';
import { useDispatch, useSelector } from 'react-redux';
Expand Down Expand Up @@ -536,6 +537,20 @@
/>
);
}
if (currentProcessConfigType === ProcessType.SHORT_CIRCUIT) {

Check failure on line 540 in src/components/directory-content-dialog.tsx

View workflow job for this annotation

GitHub Actions / build / build

Property 'SHORT_CIRCUIT' does not exist on type 'typeof ProcessType'.
return (
<SCProcessConfigEditionDialog
processConfigUuid={currentProcessConfigId}
processConfigName={elementName}
description={activeElement.description}
directory={activeDirectory}
open
onClose={handleCloseProcessConfigDialog}
fetchProcessConfig={fetchProcessConfig}
updateProcessConfig={updateProcessConfig}
/>
);
}
}
}
}
Expand Down
Loading