Skip to content

Commit 04925f5

Browse files
committed
return empty object if group property is null
1 parent 1009057 commit 04925f5

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

dev/Dev.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
search-input-class="custom-input-class"
55
:reduce-display-property="option => option.name"
66
:reduce-value-property="option => option.id"
7-
:reduceGroupProperty="option => option.group"
87
ref="multi"
98
highlight-diff
109
@diff-changed="handleChange" />

dist/vue-multi-select-listbox.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-multi-select-listbox.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-multi-select-listbox.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-multi-select-listbox.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/SearchableList/SearchableList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export default {
209209
return groupedItems;
210210
}
211211
212-
return null;
212+
return {};
213213
},
214214
215215
sortedGroupKeys() {

0 commit comments

Comments
 (0)