Skip to content

Commit

Permalink
Update navigation panel in proposal route to be properly styled
Browse files Browse the repository at this point in the history
  • Loading branch information
varunks99 committed Oct 1, 2020
1 parent 01e9575 commit 2dbfea8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/user/proposals/ProposalEditor/ProposalEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ import "./ProposalEditor.scss";
class ProposalEditor extends Component {
constructor(props) {
super(props);
this.state = {};
this.state = {
org: true
};
}
render() {
return (
<div className="editor">
<div className="editor__navigation">
<Navigation dashboard={this.state.dashboard} />
<Navigation org={this.state.org} />
</div>
<div className="editor__content">
<EditorContent />
Expand Down

0 comments on commit 2dbfea8

Please sign in to comment.