Skip to content

Commit 2dbfea8

Browse files
committed
Update navigation panel in proposal route to be properly styled
1 parent 01e9575 commit 2dbfea8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/user/proposals/ProposalEditor/ProposalEditor.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ import "./ProposalEditor.scss";
66
class ProposalEditor extends Component {
77
constructor(props) {
88
super(props);
9-
this.state = {};
9+
this.state = {
10+
org: true
11+
};
1012
}
1113
render() {
1214
return (
1315
<div className="editor">
1416
<div className="editor__navigation">
15-
<Navigation dashboard={this.state.dashboard} />
17+
<Navigation org={this.state.org} />
1618
</div>
1719
<div className="editor__content">
1820
<EditorContent />

0 commit comments

Comments
 (0)