Skip to content

Commit

Permalink
don't filter results while sharing
Browse files Browse the repository at this point in the history
Signed-off-by: Akhil <[email protected]>
  • Loading branch information
akhil1508 authored and backportbot-nextcloud[bot] committed Jan 5, 2024
1 parent 39b3f40 commit 1b6acf9
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/components/AppNavigation/EditCalendarModal/SharingSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -90,7 +91,16 @@ export default {
isCircle,
})
},
/**
* Function to filter results in NcSelect
*
* @param {object} option
* @param {string} label
* @param {string} search
*/
filterResults(option, label, search) {
return true
},
/**
* Use the cdav client call to find matches to the query from the existing Users & Groups
*
Expand Down

0 comments on commit 1b6acf9

Please sign in to comment.