This commit is contained in:
Thomas Nordquist
2019-01-13 15:26:19 +01:00
parent 0de67a48a6
commit 2d649b3f51
2 changed files with 7 additions and 4 deletions

View File

@@ -1,10 +1,11 @@
import * as React from 'react'
import { connect } from 'react-redux'
import * as q from '../../../../backend/src/Model'
import { withTheme, Theme } from '@material-ui/core/styles'
import { AppState, NodeOrder } from '../../reducers'
import { Theme, withTheme } from '@material-ui/core/styles'
import TreeNode from './TreeNode'
import { connect } from 'react-redux'
export interface Props {
lastUpdate: number
@@ -63,7 +64,7 @@ class TreeNodeSubnodes extends React.Component<Props, {}> {
return (
<span style={{ display: 'block', clear: 'both' }} >
{this.props.collapsed ? null : listItems}
{listItems}
</span>
)
}

View File

@@ -1,3 +1,5 @@
const Nucleus = require('electron-nucleus')('5c3b3e0443b7cc00eec3782b')
const Nucleus = require('electron-nucleus')('5c3b3e0443b7cc00eec3782b', {
disableInDev: true,
})
export default Nucleus