mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-22 17:22:05 -07:00
fix(menu): Reconfigured menu items
This commit is contained in:
@@ -36,6 +36,11 @@ class Audit extends React.Component {
|
||||
Backup your wallet first. Updating the configuration will
|
||||
restart the app.
|
||||
</p>
|
||||
<p>
|
||||
This is just a placeholder. This View will allow the user
|
||||
to pick alternate back-end servers. The default will
|
||||
be <a href="https://fullstack.cash" target="_blank" rel="noreferrer">FullStack.cash</a>
|
||||
</p>
|
||||
</Box>
|
||||
</Col>
|
||||
</Row>
|
||||
|
||||
@@ -2,7 +2,7 @@ import React from "react"
|
||||
import PropTypes from "prop-types"
|
||||
import Audit from "./audit"
|
||||
import Configure from "./configure"
|
||||
import Icons from "./icons"
|
||||
import Tokens from "./icons"
|
||||
import Wallet from "./wallet"
|
||||
|
||||
import AdminLTE, { Sidebar } from "adminlte-2-react"
|
||||
@@ -35,7 +35,8 @@ class AdminLTEPage extends React.Component {
|
||||
|
||||
sidebar = [
|
||||
<Item icon="fa-wallet" key="Wallet" text="Wallet" activeOn="/" />,
|
||||
<Item icon="fas-icons" key="Icons" text="Icons" />,
|
||||
<Item icon="fas-coins" key="Tokens" text="Tokens" />,
|
||||
<Item icon="fa-qrcode" key="qrReader" text="Qr Scanner" />,
|
||||
<Item icon="fas-cog" key="Configure" text="Configure" />,
|
||||
<Item icon="fa-tablet-alt" key="Audit" text="Audit" />,
|
||||
<Item icon="fa-link" key="Link" text="Link">
|
||||
@@ -45,7 +46,7 @@ class AdminLTEPage extends React.Component {
|
||||
<Item key="Games" text="Games" />
|
||||
<Item key="trade" text="Trade Locally" />
|
||||
</Item>,
|
||||
<Item icon="fa-qrcode" key="qrReader" text="Qr Scanner" />,
|
||||
|
||||
]
|
||||
|
||||
render() {
|
||||
@@ -74,7 +75,7 @@ class AdminLTEPage extends React.Component {
|
||||
updateBalance={_this.props.updateBalance}
|
||||
/>
|
||||
)}
|
||||
{_this.state.section === "Icons" && <Icons />}
|
||||
{_this.state.section === "Tokens" && <Tokens />}
|
||||
{_this.state.section === "Configure" && <Configure />}
|
||||
{_this.state.section === "Audit" && <Audit />}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user