This commit is contained in:
Thomas Nordquist
2019-03-04 17:21:11 +01:00
parent 016bf5dfcd
commit 4c84a9b5f6
5 changed files with 6 additions and 6 deletions

View File

@@ -66,7 +66,7 @@ class ConnectionSettings extends React.Component<Props, State> {
</Grid>
<Grid item={true} xs={12} style={{ padding: 0 }}>
<List
className={classes.topicList}
className={`${classes.topicList} advanced-connection-settings-topic-list`}
component="nav"
>
<div className={classes.list}>

View File

@@ -31,10 +31,9 @@ import Navigation from '@material-ui/icons/Navigation'
import FormatAlignLeft from '@material-ui/icons/FormatAlignLeft'
import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import { publishActions } from '../../../actions'
import { publishActions, globalActions } from '../../../actions'
import ClearAdornment from '../../helper/ClearAdornment'
import { TopicViewModel } from '../../../TopicViewModel'
import CustomIconButton from '../../CustomIconButton';
interface Props {
node?: q.TreeNode<TopicViewModel>
@@ -42,6 +41,7 @@ interface Props {
topic?: string
payload?: string
actions: typeof publishActions
globalActions: typeof globalActions
retain: boolean
editorMode: string
qos: 0 | 1 | 2

View File

@@ -89,7 +89,7 @@ class Sidebar extends React.Component<Props, State> {
public render() {
return (
<div className={this.props.classes.drawer}>
<div id="Sidebar" className={this.props.classes.drawer}>
{this.renderNode()}
</div>
)