We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b964f5 commit ea656c3Copy full SHA for ea656c3
packages/module/src/WarningModal/WarningModal.tsx
@@ -98,13 +98,13 @@ const WarningModal: React.FunctionComponent<WarningModalProps> = ({
98
{confirmationInputProps ? (
99
<Flex direction={{ default: 'column' }} spaceItems={{ default: 'spaceItemsSm' }}>
100
<FlexItem>
101
- {confirmationInputProps && confirmationInputLabel(deleteNameSanitized)}
+ {confirmationInputLabel(deleteNameSanitized)}
102
</FlexItem>
103
<TextInput
104
ouiaId={`${ouiaId}-confirmation-text-input`}
105
value={inputValue}
106
onChange={(_e, value) => setInputValue(value)}
107
- {...confirmationInputProps}
+ {...{ type: 'text', isRequired: true, ...confirmationInputProps }}
108
/>
109
</Flex>
110
) : null}
0 commit comments