Skip to content
Merged
Changes from 5 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
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@
createVoltageLevelTopologyDtoToForm,
createVoltageLevelTopologyFormToDto,
CreateVoltageLevelTopologyDto,
voltageLevelSectionCreationFormSchema,

Check failure on line 113 in src/components/dialogs/network-modification/composite-modification/composite-modification-dialog.tsx

View workflow job for this annotation

GitHub Actions / build / build

'"@gridsuite/commons-ui"' has no exported member named 'voltageLevelSectionCreationFormSchema'. Did you mean 'voltageLevelCreationFormSchema'?
voltageLevelSectionCreationDtoToForm,

Check failure on line 114 in src/components/dialogs/network-modification/composite-modification/composite-modification-dialog.tsx

View workflow job for this annotation

GitHub Actions / build / build

'"@gridsuite/commons-ui"' has no exported member named 'voltageLevelSectionCreationDtoToForm'. Did you mean 'voltageLevelCreationDtoToForm'?
voltageLevelSectionCreationFormToDto,

Check failure on line 115 in src/components/dialogs/network-modification/composite-modification/composite-modification-dialog.tsx

View workflow job for this annotation

GitHub Actions / build / build

'"@gridsuite/commons-ui"' has no exported member named 'voltageLevelSectionCreationFormToDto'. Did you mean 'voltageLevelCreationFormToDto'?
VoltageLevelSectionCreationForm,

Check failure on line 116 in src/components/dialogs/network-modification/composite-modification/composite-modification-dialog.tsx

View workflow job for this annotation

GitHub Actions / build / build

'"@gridsuite/commons-ui"' has no exported member named 'VoltageLevelSectionCreationForm'. Did you mean 'VoltageLevelCreationForm'?
} from '@gridsuite/commons-ui';
import * as yup from 'yup';
import { yupResolver } from '@hookform/resolvers/yup';
Expand Down Expand Up @@ -471,6 +475,18 @@
removeOptional: false,
},
],
[
ModificationType.CREATE_VOLTAGE_LEVEL_SECTION,
{
formSchema: voltageLevelSectionCreationFormSchema,
dtoToForm: voltageLevelSectionCreationDtoToForm,
formToDto: (form) => voltageLevelSectionCreationFormToDto(form),
Comment thread
KoloMenek marked this conversation as resolved.
errorHeaderId: 'VoltageLevelSectionCreationError',
titleId: 'CreateVoltageLevelSection',
ModificationForm: VoltageLevelSectionCreationForm,
removeOptional: false,
},
],
]),
[intl]
);
Expand Down
Loading