Skip to content

Commit

Permalink
rename top level pane DatabasePane -> PluginPane
Browse files Browse the repository at this point in the history
  • Loading branch information
moxious committed Jan 11, 2019
1 parent 33944c4 commit 40fabd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Render } from 'graph-app-kit/components/Render';
import Neo4jConfiguration from './configuration/Neo4jConfiguration';
import PerformancePane from './performance/PerformancePane';
import OSPane from './performance/OSPane';
import DatabasePane from './db/DatabasePane';
import PluginPane from './db/PluginPane';
import PermissionsPane from './configuration/PermissionsPane';
import ClusterOverviewPane from './overview/ClusterOverviewPane';
import ClusterNodeTabHeader from './ClusterNodeTabHeader';
Expand Down Expand Up @@ -54,9 +54,9 @@ class Halin extends Component {
<OSPane key={key} node={node} driver={driver} />),
},
{
menuItem: 'Data',
menuItem: 'Plugins',
render: () => this.paneWrapper(
<DatabasePane key={key} node={node} driver={driver} />),
<PluginPane key={key} node={node} driver={driver} />),
},
]),
};
Expand Down

0 comments on commit 40fabd2

Please sign in to comment.