mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Removed Overview section.
This commit is contained in:
parent
319d844972
commit
94f126688e
@ -50,8 +50,8 @@ class Base extends Component {
|
|||||||
<div className="container">
|
<div className="container">
|
||||||
<BaseLayout>
|
<BaseLayout>
|
||||||
<Switch>
|
<Switch>
|
||||||
<Redirect exact path={"/"} to={"/overview"}/>
|
<Redirect exact path={"/"} to={"/assets/apps"}/>
|
||||||
<Route exact path={"/overview"} component={PublisherOverview}/>
|
{/*<Route exact path={"/overview"} component={PublisherOverview}/>*/}
|
||||||
<Route exact path={"/assets/apps"} component={ApplicationListing}/>
|
<Route exact path={"/assets/apps"} component={ApplicationListing}/>
|
||||||
<Route exact path={"/assets/apps/create"} component={ApplicationCreate}/>
|
<Route exact path={"/assets/apps/create"} component={ApplicationCreate}/>
|
||||||
<Route exact path={"/assets/platforms/create"} component={PlatformCreate}/>
|
<Route exact path={"/assets/platforms/create"} component={PlatformCreate}/>
|
||||||
|
|||||||
@ -110,10 +110,7 @@ class BaseLayout extends Component {
|
|||||||
<div>
|
<div>
|
||||||
<Drawer containerStyle={{height: 'calc(100% - 64px)', width: '15%', top: '10%'}} open={true}>
|
<Drawer containerStyle={{height: 'calc(100% - 64px)', width: '15%', top: '10%'}} open={true}>
|
||||||
<List>
|
<List>
|
||||||
<ListItem primaryText="Overview"
|
<ListItem primaryText="Applications"
|
||||||
onClick={this.handleOverviewClick.bind(this)}
|
|
||||||
leftIcon={<Dashboard/>}/>
|
|
||||||
<ListItem primaryText="Applications"
|
|
||||||
leftIcon={<Apps/>}
|
leftIcon={<Apps/>}
|
||||||
initiallyOpen={false}
|
initiallyOpen={false}
|
||||||
primaryTogglesNestedList={true}
|
primaryTogglesNestedList={true}
|
||||||
|
|||||||
@ -16,6 +16,7 @@
|
|||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
import React, {Component} from 'react';
|
import React, {Component} from 'react';
|
||||||
|
import DataTable from '../UIComponents/DataTable';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -39,6 +40,7 @@ class PublisherOverview extends Component {
|
|||||||
|
|
||||||
<div>
|
<div>
|
||||||
Overview
|
Overview
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user