Skip to content

Commit

Permalink
[#566] Fix Flush ACL cache modal
Browse files Browse the repository at this point in the history
  • Loading branch information
karesti committed Jan 22, 2025
1 parent 707301a commit 5b47457
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/AccessManagement/FlushRoleCacheModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ const FlushRoleCacheModal = (props: { isModalOpen: boolean; submitModal: () => v
disableFocusTrap={true}
>
<ModalHeader titleIconVariant={'warning'} title={t('access-management.modal-flush-cache-title')} />
<ModalBody></ModalBody>
<ModalBody>
<Content component={'p'}>{t('access-management.modal-flush-cache-description')}</Content>
</ModalBody>
<ModalFooter>
<Button
key={'Flush'}
Expand All @@ -33,7 +35,6 @@ const FlushRoleCacheModal = (props: { isModalOpen: boolean; submitModal: () => v
{t('common.actions.cancel')}
</Button>
</ModalFooter>
<Content component={'p'}>{t('access-management.modal-flush-cache-description')}</Content>
</Modal>
);
};
Expand Down

0 comments on commit 5b47457

Please sign in to comment.