mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
dashfolders: Remove the PermissionsInner-strategy since we have a container for this route now #10275
This commit is contained in:
parent
a5d441e78e
commit
1d8ce3673e
@ -3,8 +3,6 @@ import PermissionsList from './PermissionsList';
|
||||
import _ from 'lodash';
|
||||
import DevTools from 'mobx-react-devtools';
|
||||
import { inject, observer } from 'mobx-react';
|
||||
import { Provider } from 'mobx-react';
|
||||
import { store } from 'app/stores/store';
|
||||
// import UserPicker from 'app/core/components/UserPicker/UserPicker';
|
||||
|
||||
export interface DashboardAcl {
|
||||
@ -33,19 +31,9 @@ export interface IProps {
|
||||
isFolder: boolean;
|
||||
}
|
||||
|
||||
class Permissions extends Component<IProps, any> {
|
||||
render() {
|
||||
return (
|
||||
<Provider {...store}>
|
||||
<PermissionsInner {...this.props} />
|
||||
</Provider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@inject('permissions')
|
||||
@observer
|
||||
class PermissionsInner extends Component<IProps, any> {
|
||||
class Permissions extends Component<IProps, any> {
|
||||
// TODO Remove Inner from Name when we get access via ReactContainer
|
||||
dashboardId: any;
|
||||
meta: any;
|
||||
@ -130,7 +118,7 @@ class PermissionsInner extends Component<IProps, any> {
|
||||
}
|
||||
|
||||
render() {
|
||||
console.log('PermissionsInner render');
|
||||
console.log('Permissions render');
|
||||
const { error, permissions } = this.props;
|
||||
const { newType } = this.state;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user