Skip to content

Commit c5ed3af

Browse files
don't filter results while sharing
Signed-off-by: Akhil <[email protected]>
1 parent 651fdae commit c5ed3af

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/components/AppNavigation/EditCalendarModal/SharingSearch.vue

+11-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
class="sharing-search__select"
3434
:class="{ 'showContent': inputGiven, 'icon-loading': isLoading }"
3535
:user-select="true"
36+
:filter-by="filterResults"
3637
open-direction="above"
3738
track-by="user"
3839
label="displayName"
@@ -90,7 +91,16 @@ export default {
9091
isCircle,
9192
})
9293
},
93-
94+
/**
95+
* Function to filter results in NcSelect
96+
*
97+
* @param {object} option
98+
* @param {string} label
99+
* @param {string} search
100+
*/
101+
filterResults(option, label, search) {
102+
return true
103+
},
94104
/**
95105
* Use the cdav client call to find matches to the query from the existing Users & Groups
96106
*

0 commit comments

Comments
 (0)