fix type (#12832)
This commit is contained in:
@ -24,7 +24,6 @@ const SettingsRolePermissionsWrapper = (
|
|||||||
<SettingsRolePermissions
|
<SettingsRolePermissions
|
||||||
roleId={args.roleId}
|
roleId={args.roleId}
|
||||||
isEditable={args.isEditable}
|
isEditable={args.isEditable}
|
||||||
isCreateMode={args.isCreateMode}
|
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@ -42,7 +41,6 @@ export const Default: Story = {
|
|||||||
args: {
|
args: {
|
||||||
roleId: '1',
|
roleId: '1',
|
||||||
isEditable: true,
|
isEditable: true,
|
||||||
isCreateMode: false,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -50,7 +48,6 @@ export const ReadOnly: Story = {
|
|||||||
args: {
|
args: {
|
||||||
roleId: '1',
|
roleId: '1',
|
||||||
isEditable: false,
|
isEditable: false,
|
||||||
isCreateMode: false,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -58,6 +55,5 @@ export const PendingRole: Story = {
|
|||||||
args: {
|
args: {
|
||||||
roleId: 'newRoleId',
|
roleId: 'newRoleId',
|
||||||
isEditable: true,
|
isEditable: true,
|
||||||
isCreateMode: true,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user