fix(editor): checklist button icon

This commit is contained in:
kolaente 2023-06-20 11:33:13 +02:00
parent af9eb358ee
commit e760ce45e4
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 3 additions and 2 deletions

View File

@ -183,7 +183,7 @@
title="task list"
>
<span class="icon">
<icon :icon="['fa', ' fa-list-check']" />
<icon icon="fa-list-check" />
</span>
</BaseButton>
<BaseButton

View File

@ -73,7 +73,7 @@ import {
faUnlink,
faParagraph,
faTable,
faX, faArrowTurnDown,
faX, faArrowTurnDown, faListCheck,
} from '@fortawesome/free-solid-svg-icons'
import {
faBellSlash,
@ -180,6 +180,7 @@ library.add(faX)
library.add(faAnglesUp)
library.add(faBolt)
library.add(faArrowTurnDown)
library.add(faListCheck)
// overwriting the wrong types
export default FontAwesomeIcon as unknown as FontAwesomeIconFixedTypes