🧹 restore devtools sidebar, enable mobile on .env.example
This commit is contained in:
parent
b2c4a6cd9d
commit
056455c92d
3 changed files with 3 additions and 4 deletions
|
@ -26,3 +26,4 @@ S3_BUCKET_URL_BASE=<alt-for-s3-url>
|
|||
SESSION_SECRET=whatever_you_want_this_to_be_it_only_matters_for_production
|
||||
UI_ACCESS_TOKEN_ENABLED=false
|
||||
UPLOAD_LIMIT=250000000
|
||||
MOBILE_ENABLED=true
|
||||
|
|
|
@ -34,8 +34,7 @@ class App extends React.Component {
|
|||
render() {
|
||||
return (
|
||||
<div className="app">
|
||||
{/* FIXME: remove false */}
|
||||
{false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
|
||||
{this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
|
||||
{this.props.children}
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -67,7 +67,6 @@ const MobileDashboard = ({ username }) => {
|
|||
{Panels[selected] && Panels[selected]({ username })}
|
||||
</Content>
|
||||
|
||||
|
||||
<Footer>
|
||||
{!isExamples &&
|
||||
<FooterTabSwitcher>
|
||||
|
|
Loading…
Reference in a new issue