Обновлено имя метода обновления роли

This commit is contained in:
Александр Сироткин 2022-02-07 18:42:35 +05:00
parent 9aa01454eb
commit be576746cf

View File

@ -66,7 +66,7 @@ export const RoleController = memo(() => {
columns={columns}
dataSource={roles}
onRowAdd={hasPermission('AdminUserRole.edit') && makeActionHandler('insert', handlerProps, null, 'Добавление роли')}
onRowEdit={hasPermission('AdminUserRole.edit') && makeActionHandler('put', handlerProps, null, 'Редактирование роли')}
onRowEdit={hasPermission('AdminUserRole.edit') && makeActionHandler('update', handlerProps, null, 'Редактирование роли')}
onRowDelete={hasPermission('AdminUserRole.delete') && makeActionHandler('delete', handlerProps, null, 'Удаление роли')}
/>
</LoaderPortal>