Fix broken image in plugin (#3839)
This commit is contained in:
parent
b3a356067c
commit
32a44723c3
1 changed files with 2 additions and 1 deletions
|
@ -25,6 +25,7 @@ import {useAppSelector, useAppDispatch} from '../../../../webapp/src/store/hooks
|
||||||
import AddIcon from '../../../../webapp/src/widgets/icons/add'
|
import AddIcon from '../../../../webapp/src/widgets/icons/add'
|
||||||
import Button from '../../../../webapp/src/widgets/buttons/button'
|
import Button from '../../../../webapp/src/widgets/buttons/button'
|
||||||
|
|
||||||
|
import {Utils} from '../../../../webapp/src/utils'
|
||||||
import {WSClient} from '../../../../webapp/src/wsclient'
|
import {WSClient} from '../../../../webapp/src/wsclient'
|
||||||
|
|
||||||
import boardsScreenshots from '../../../../webapp/static/boards-screenshots.png'
|
import boardsScreenshots from '../../../../webapp/static/boards-screenshots.png'
|
||||||
|
@ -107,7 +108,7 @@ const RHSChannelBoards = () => {
|
||||||
defaultMessage='Boards is a project management tool that helps define, organize, track and manage work across teams, using a familiar kanban board view.'
|
defaultMessage='Boards is a project management tool that helps define, organize, track and manage work across teams, using a familiar kanban board view.'
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className='boards-screenshots'><img src={boardsScreenshots}/></div>
|
<div className='boards-screenshots'><img src={Utils.buildURL(boardsScreenshots, true)}/></div>
|
||||||
<Button
|
<Button
|
||||||
onClick={() => dispatch(setLinkToChannel(currentChannel.id))}
|
onClick={() => dispatch(setLinkToChannel(currentChannel.id))}
|
||||||
emphasis='primary'
|
emphasis='primary'
|
||||||
|
|
Loading…
Reference in a new issue