Skip to content

Commit 392fb83

Browse files
fix: user name search
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
1 parent 7ea6d38 commit 392fb83

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/components/Editor/Invitees/InviteesListSearch.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
class="invitees-search__vselect"
99
:options="matches"
1010
:searchable="true"
11+
:filter-by="filterAttendees"
1112
:max-height="600"
1213
:placeholder="placeholder"
1314
:class="{ showContent: inputGiven, 'icon-loading': isLoading }"
@@ -110,6 +111,11 @@ export default {
110111
},
111112
112113
methods: {
114+
// Required to disable NCSelect's internal filtering
115+
filterAttendees() {
116+
return true
117+
},
118+
113119
findAttendees: debounce(async function(query) {
114120
this.isLoading = true
115121
const matches = []

0 commit comments

Comments
 (0)