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";
6
6
class ProposalEditor extends Component {
7
7
constructor ( props ) {
8
8
super ( props ) ;
9
- this . state = { } ;
9
+ this . state = {
10
+ org : true
11
+ } ;
10
12
}
11
13
render ( ) {
12
14
return (
13
15
< div className = "editor" >
14
16
< div className = "editor__navigation" >
15
- < Navigation dashboard = { this . state . dashboard } />
17
+ < Navigation org = { this . state . org } />
16
18
</ div >
17
19
< div className = "editor__content" >
18
20
< EditorContent />
Original file line number Diff line number Diff line change 4
4
height : auto ;
5
5
font-family : Muli, sans-serif ;
6
6
.editor__navigation {
7
- flex : 1 ;
7
+ flex : 0.5 ;
8
8
border-right : solid 1px #dfe9f1 ;
9
+ background : #f5f5f5 ;
9
10
}
10
11
.editor__content {
11
12
flex : 5.5 ;
You can’t perform that action at this time.
0 commit comments