|
|
@@ -9,6 +9,8 @@ const pad = number => {
|
|
9
|
9
|
return number.length < 2 ? pad('0' + number, 2) : number
|
|
10
|
10
|
}
|
|
11
|
11
|
|
|
|
12
|
+
|
|
|
13
|
+
|
|
12
|
14
|
const WorkspaceListItem = props => {
|
|
13
|
15
|
return (
|
|
14
|
16
|
<li className='sidebar__navigation__workspace__item'>
|
|
|
@@ -22,7 +24,7 @@ const WorkspaceListItem = props => {
|
|
22
|
24
|
</div>
|
|
23
|
25
|
|
|
24
|
26
|
<div className='sidebar__navigation__workspace__item__icon'>
|
|
25
|
|
- <i className='fa fa-chevron-down' />
|
|
|
27
|
+ <i className={classnames(props.isOpenInSidebar ? 'fa fa-chevron-up' : 'fa fa-chevron-down')} />
|
|
26
|
28
|
</div>
|
|
27
|
29
|
</div>
|
|
28
|
30
|
|