Skip to content

Commit

Permalink
fix: no null textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
dleard committed Jul 29, 2020
1 parent 931d08e commit 9751878
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ export const ApplicationWizardConfirmationComponent: React.FunctionComponent<Pro
<Form.Control
as="textarea"
rows={4}
value={overrideJustification}
value={overrideJustification || ''}
onChange={handleOverrideChange}
/>
</Form.Group>
Expand Down

0 comments on commit 9751878

Please sign in to comment.