Skip to content

Commit

Permalink
PR updates
Browse files Browse the repository at this point in the history
Signed-off-by: ibolton336 <[email protected]>
  • Loading branch information
ibolton336 committed Nov 22, 2023
1 parent 9b58b4d commit 6baa60d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -306,11 +306,7 @@ export const WaveForm: React.FC<WaveFormProps> = ({
dateFormat={(val) => dayjs(val).format("MM/DD/YYYY")}
dateParse={(val) => dayjs(val).toDate()}
validators={[startDateRangeValidator]}
appendTo={() =>
document.getElementById(
"create-edit-migration-wave-modal"
) as HTMLElement
}
appendTo={() => document.body}
/>
)}
/>
Expand All @@ -333,11 +329,7 @@ export const WaveForm: React.FC<WaveFormProps> = ({
dateFormat={(val) => dayjs(val).format("MM/DD/YYYY")}
dateParse={(val) => dayjs(val).toDate()}
validators={[endDateRangeValidator]}
appendTo={() =>
document.getElementById(
"create-edit-migration-wave-modal"
) as HTMLElement
}
appendTo={() => document.body}
isDisabled={!!formErrors.startDateStr}
/>
)}
Expand Down
1 change: 0 additions & 1 deletion client/src/app/pages/migration-waves/migration-waves.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,6 @@ export const MigrationWaves: React.FC = () => {
variant={ModalVariant.medium}
isOpen={isWaveModalOpen}
onClose={closeWaveModal}
style={{ minHeight: "62vh" }}
>
<WaveForm
migrationWave={migrationWaveToEdit ? migrationWaveToEdit : undefined}
Expand Down

0 comments on commit 6baa60d

Please sign in to comment.