Skip to content

Commit

Permalink
feat(admin-ui): update packages with security fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
syntrydy committed Jan 17, 2022
1 parent 8d6b0db commit f8e6dc5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@material-table/core": "^4.3.18",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
Expand Down Expand Up @@ -163,7 +164,7 @@
"react-error-boundary": "^3.1.0",
"react-grid-layout": "^1.1.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.8.0",
"react-i18next": "^11.15.3",
"react-idle-timer": "^4.6.4",
"react-image-crop": "8.6.9",
"react-month-picker": "^2.2.1",
Expand All @@ -178,7 +179,7 @@
"react-tooltip": "^4.2.21",
"react-universal-component": "^4.0.0",
"reactstrap": "^8.7.1",
"recharts": "^2.1.4",
"recharts": "^2.1.8",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
Expand Down
4 changes: 2 additions & 2 deletions plugins/admin/components/Permissions/UiPermListPage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useEffect, useState } from 'react'
import MaterialTable from 'material-table'
import MaterialTable from '@material-table/core';
import { Paper } from '@material-ui/core'
import UiPermDetailPage from './UiPermDetailPage'
import { Badge } from 'reactstrap'
Expand Down Expand Up @@ -73,7 +73,7 @@ function UiPermListPage({ apiPerms, permissions, loading, dispatch }) {
{
title: `${t('fields.name')}`,
field: 'permission',
editable: false,
editable:false,
width: '50%',
render: (rowData) => (
<Badge color="info">{rowData.permission}</Badge>
Expand Down
2 changes: 1 addition & 1 deletion plugins/admin/components/Roles/UiRoleListPage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useEffect, useState } from 'react'
import MaterialTable from 'material-table'
import MaterialTable from '@material-table/core';
import { Paper } from '@material-ui/core'
import UiRoleDetailPage from './UiRoleDetailPage'
import RoleAddDialogForm from './RoleAddDialogForm'
Expand Down

0 comments on commit f8e6dc5

Please sign in to comment.