We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01e9575 commit 2dbfea8Copy full SHA for 2dbfea8
src/user/proposals/ProposalEditor/ProposalEditor.js
@@ -6,13 +6,15 @@ import "./ProposalEditor.scss";
6
class ProposalEditor extends Component {
7
constructor(props) {
8
super(props);
9
- this.state = {};
+ this.state = {
10
+ org: true
11
+ };
12
}
13
render() {
14
return (
15
<div className="editor">
16
<div className="editor__navigation">
- <Navigation dashboard={this.state.dashboard} />
17
+ <Navigation org={this.state.org} />
18
</div>
19
<div className="editor__content">
20
<EditorContent />
0 commit comments