mirror of
https://github.com/strapi/strapi.git
synced 2025-09-06 23:28:02 +00:00
Add isSubmitting to button
This commit is contained in:
parent
f16f4ba4ef
commit
ab0c3352f0
@ -22,7 +22,7 @@ const EditPage = () => {
|
||||
const {
|
||||
params: { id },
|
||||
} = useRouteMatch('/settings/roles/:id');
|
||||
const [, setIsSubmiting] = useState(false);
|
||||
const [isSubmitting, setIsSubmiting] = useState(false);
|
||||
const permissionsRef = useRef();
|
||||
const { lockApp, unlockApp } = useOverlayBlocker();
|
||||
const { trackUsage } = useTracking();
|
||||
@ -118,7 +118,11 @@ const EditPage = () => {
|
||||
defaultMessage: 'Reset',
|
||||
})}
|
||||
</Button>
|
||||
<Button disabled={role.code === 'strapi-super-admin'} onClick={handleSubmit}>
|
||||
<Button
|
||||
disabled={role.code === 'strapi-super-admin'}
|
||||
onClick={handleSubmit}
|
||||
loading={isSubmitting}
|
||||
>
|
||||
{formatMessage({
|
||||
id: 'app.components.Button.save',
|
||||
defaultMessage: 'Save',
|
||||
|
Loading…
x
Reference in New Issue
Block a user