Skip to content

Commit

Permalink
Fix rendering default vue-select component
Browse files Browse the repository at this point in the history
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
  • Loading branch information
raimund-schluessler committed Feb 2, 2023
1 parent 31ea9c6 commit 2bc5375
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/NcSelect/NcSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,8 @@ import NcLoadingIcon from '../NcLoadingIcon/index.js'
import l10n from '../../mixins/l10n.js'
import { h } from 'vue'
export default {
name: 'NcSelect',
Expand Down Expand Up @@ -610,7 +612,7 @@ export default {
type: Object,
default: () => ({
Deselect: {
render: createElement => createElement(Close, {
render: () => h(Close, {
props: {
size: 20,
fillColor: 'var(--vs-controls-color)',
Expand Down

0 comments on commit 2bc5375

Please sign in to comment.