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">
|
||||
<BaseLayout>
|
||||
<Switch>
|
||||
<Redirect exact path={"/"} to={"/overview"}/>
|
||||
<Route exact path={"/overview"} component={PublisherOverview}/>
|
||||
<Redirect exact path={"/"} to={"/assets/apps"}/>
|
||||
{/*<Route exact path={"/overview"} component={PublisherOverview}/>*/}
|
||||
<Route exact path={"/assets/apps"} component={ApplicationListing}/>
|
||||
<Route exact path={"/assets/apps/create"} component={ApplicationCreate}/>
|
||||
<Route exact path={"/assets/platforms/create"} component={PlatformCreate}/>
|
||||
|
||||
@ -110,9 +110,6 @@ class BaseLayout extends Component {
|
||||
<div>
|
||||
<Drawer containerStyle={{height: 'calc(100% - 64px)', width: '15%', top: '10%'}} open={true}>
|
||||
<List>
|
||||
<ListItem primaryText="Overview"
|
||||
onClick={this.handleOverviewClick.bind(this)}
|
||||
leftIcon={<Dashboard/>}/>
|
||||
<ListItem primaryText="Applications"
|
||||
leftIcon={<Apps/>}
|
||||
initiallyOpen={false}
|
||||
|
||||
@ -16,6 +16,7 @@
|
||||
* under the License.
|
||||
*/
|
||||
import React, {Component} from 'react';
|
||||
import DataTable from '../UIComponents/DataTable';
|
||||
|
||||
/**
|
||||
*
|
||||
@ -39,6 +40,7 @@ class PublisherOverview extends Component {
|
||||
|
||||
<div>
|
||||
Overview
|
||||
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user