File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
src/user/proposals/ProposalEditor Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,15 @@ import "./ProposalEditor.scss";
66class 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 />
Original file line number Diff line number Diff line change 44 height : auto ;
55 font-family : Muli, sans-serif ;
66 .editor__navigation {
7- flex : 1 ;
7+ flex : 0.5 ;
88 border-right : solid 1px #dfe9f1 ;
9+ background : #f5f5f5 ;
910 }
1011 .editor__content {
1112 flex : 5.5 ;
You can’t perform that action at this time.
0 commit comments