feat: permissions service full access.

This commit is contained in:
a.bouhuolia
2021-12-26 18:26:05 +02:00
parent 1d505db7bf
commit 0dddf3d1d0
14 changed files with 790 additions and 202 deletions

View File

@@ -11,9 +11,13 @@ import { FormattedMessage as T } from 'components';
* @returns {React.JSX}
*/
export function RoleFormFloatingActions() {
// Formik form context.
const { isSubmitting } = useFormikContext();
// History context.
const history = useHistory();
// Handle close click.
const handleCloseClick = () => {
history.go(-1);
};