-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ | |
class="sharing-search__select" | ||
:class="{ 'showContent': inputGiven, 'icon-loading': isLoading }" | ||
:user-select="true" | ||
:filter-by="filterResults" | ||
open-direction="above" | ||
track-by="user" | ||
label="displayName" | ||
|
@@ -90,7 +91,16 @@ export default { | |
isCircle, | ||
}) | ||
}, | ||
|
||
/** | ||
* Function to filter results in NcSelect | ||
* | ||
* @param {object} option | ||
Check warning on line 97 in src/components/AppNavigation/EditCalendarModal/SharingSearch.vue
|
||
* @param {string} label | ||
Check warning on line 98 in src/components/AppNavigation/EditCalendarModal/SharingSearch.vue
|
||
* @param {string} search | ||
Check warning on line 99 in src/components/AppNavigation/EditCalendarModal/SharingSearch.vue
|
||
*/ | ||
filterResults(option, label, search) { | ||
return true | ||
}, | ||
/** | ||
* Use the cdav client call to find matches to the query from the existing Users & Groups | ||
* | ||
|