We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 651fdae commit c5ed3afCopy full SHA for c5ed3af
src/components/AppNavigation/EditCalendarModal/SharingSearch.vue
@@ -33,6 +33,7 @@
33
class="sharing-search__select"
34
:class="{ 'showContent': inputGiven, 'icon-loading': isLoading }"
35
:user-select="true"
36
+ :filter-by="filterResults"
37
open-direction="above"
38
track-by="user"
39
label="displayName"
@@ -90,7 +91,16 @@ export default {
90
91
isCircle,
92
})
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
+ },
104
/**
105
* Use the cdav client call to find matches to the query from the existing Users & Groups
106
*
0 commit comments