We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0efe38d commit 7659d32Copy full SHA for 7659d32
1 file changed
webapp/components/NetPyNE.js
@@ -31,7 +31,7 @@ const styles = ({ zIndex }) => ({
31
},
32
topbar: {
33
position: 'relative',
34
- zIndex: zIndex.drawer + 1,
+ zIndex: zIndex.drawer,
35
36
content: {
37
flexGrow: 1,
@@ -46,6 +46,11 @@ const TIMEOUT = 10000;
46
const EXPERIMENT_POLL_INTERVAL = 1000;
47
48
class NetPyNE extends React.Component {
49
+ constructor (props) {
50
+ super(props);
51
+ this.openPythonCallDialog = this.openPythonCallDialog.bind(this);
52
+ }
53
+
54
componentDidMount () {
55
GEPPETTO.on(GEPPETTO.Events.Error_while_exec_python_command, this.openPythonCallDialog, this);
56
0 commit comments