Skip to content

Commit

Permalink
fix: workaround for edit NS bug (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
patriciareinoso authored Aug 2, 2024
1 parent bcaaec3 commit 9d699a0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/NetworkSliceModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ const NetworkSliceModal = ({ networkSlice, toggleModal }: NetworkSliceModalProps
placeholder="001"
stacked
required
disabled={networkSlice ? true : false} // Workaround for https://github.com/omec-project/webconsole/issues/200
{...formik.getFieldProps("mcc")}
error={formik.touched.mcc ? formik.errors.mcc : null}
/>
Expand All @@ -237,6 +238,7 @@ const NetworkSliceModal = ({ networkSlice, toggleModal }: NetworkSliceModalProps
placeholder="01"
stacked
required
disabled={networkSlice ? true : false} // Workaround for https://github.com/omec-project/webconsole/issues/200
{...formik.getFieldProps("mnc")}
error={formik.touched.mnc ? formik.errors.mnc : null}
/>
Expand Down

0 comments on commit 9d699a0

Please sign in to comment.