feat(RoleForm): service full access.

This commit is contained in:
a.bouhuolia
2021-12-26 19:09:20 +02:00
parent 49b6deed6d
commit d4138fdf4e
6 changed files with 20 additions and 5 deletions

View File

@@ -64,6 +64,15 @@ function GlobalErrors({
},
});
}
if (globalErrors.userInactive) {
AppToaster.show({
message: 'The authorized user is inactive.',
intent: Intent.DANGER,
onDismiss: () => {
globalErrorsSet({ userInactive: false });
},
});
}
return null;
}