|
@@ -1,6 +1,6 @@
|
1
|
1
|
import React from 'react'
|
2
|
2
|
import { Link } from 'react-router-dom'
|
3
|
|
-import { PAGE } from '../../../helper.js'
|
|
3
|
+import { PAGE, workspaceConfig } from '../../../helper.js'
|
4
|
4
|
|
5
|
5
|
const AdminLink = props => {
|
6
|
6
|
return (
|
|
@@ -12,7 +12,7 @@ const AdminLink = props => {
|
12
|
12
|
|
13
|
13
|
<div className='adminlink__setting dropdown-menu' aria-labelledby='dropdownMenuButton'>
|
14
|
14
|
<Link className='setting__link dropdown-item' to={PAGE.ADMIN.WORKSPACE}>
|
15
|
|
- <i className='fa fa-fw fa-space-shuttle mr-2' />
|
|
15
|
+ <i className={`fa fa-fw fa-${workspaceConfig.faIcon} mr-2`} />
|
16
|
16
|
{props.t('Admin workspace')}
|
17
|
17
|
</Link>
|
18
|
18
|
|