Skip to content

Commit ed3c9e8

Browse files
committed
fixed issue with deprecated slot attribute on span element in ParentMultiselect.vue
Co-authored-by: Kerolos Nesem <[email protected]> Co-authored-by: Megan Nadkarni <[email protected]> Co-authored-by: Julia Bakerink <[email protected]>
1 parent 0850eec commit ed3c9e8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"quasar": "^2.5.5",
4040
"quasar-dotenv": "^1.0.5",
4141
"vue-draggable-resizable": "^2.3.0",
42-
"vue-multiselect": "^3.0.0-alpha.1",
42+
"vue-multiselect": "^3.0.0-alpha.2",
4343
"vue-prism-editor": "^2.0.0-alpha.2",
4444
"vue3-tree": "^0.11.0",
4545
"vued3tree": "^5.1.0",

src/components/home_sidebar_items/ComponentTab/ComponentActions.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
:searchable="false"
2323
@search-change="stopDelete($event)"
2424
>
25-
<span slot="noResult">No actions found.</span>
2625
</VueMultiselect>
2726
<br />
2827
<q-btn

src/components/home_sidebar_items/ComponentTab/ComponentState.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
:searchable="false"
2323
@search-change="stopDelete($event)"
2424
>
25-
<span slot="noResult">No state found.</span>
25+
2626
</VueMultiselect>
2727
<br />
2828
<q-btn

src/components/home_sidebar_items/ParentMultiselect.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ Description:
1919
:option-height="20"
2020
:searchable="true"
2121
>
22+
<template v-slot:noResult>No components found.</template>
23+
<!-- <slot name="noResult">Hello world</slot> -->
2224
<!-- refactor slot syntax here -->
23-
<span slot="noResult">No components found.</span>
2425
</VueMultiselect>
2526
</div>
2627
</template>

0 commit comments

Comments
 (0)