Skip to content

Commit 2bc5375

Browse files
Fix rendering default vue-select component
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
1 parent 31ea9c6 commit 2bc5375

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/NcSelect/NcSelect.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,8 @@ import NcLoadingIcon from '../NcLoadingIcon/index.js'
546546
547547
import l10n from '../../mixins/l10n.js'
548548
549+
import { h } from 'vue'
550+
549551
export default {
550552
name: 'NcSelect',
551553
@@ -610,7 +612,7 @@ export default {
610612
type: Object,
611613
default: () => ({
612614
Deselect: {
613-
render: createElement => createElement(Close, {
615+
render: () => h(Close, {
614616
props: {
615617
size: 20,
616618
fillColor: 'var(--vs-controls-color)',

0 commit comments

Comments
 (0)