Fixes visual bug where revert button showed up above input

This commit is contained in:
mabashian 2021-06-16 17:31:36 -04:00 committed by Shane McDonald
parent c993c8b3b9
commit 0947d30682
No known key found for this signature in database
GPG Key ID: 6F374AF6E9EB9374

View File

@ -74,7 +74,7 @@ function CredentialInput({ fieldOptions, credentialKind, ...rest }) {
if (fieldOptions.secret) {
return (
<>
<InputGroup>
{RevertReplaceButton}
<FileUpload
{...subFormField}
@ -89,7 +89,7 @@ function CredentialInput({ fieldOptions, credentialKind, ...rest }) {
allowEditingUploadedText
validated={isValid ? 'default' : 'error'}
/>
</>
</InputGroup>
);
}