Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable4.4] don't filter results while sharing #5667

Open
wants to merge 1 commit into
base: stable4.4
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
isCircle,
})
},

/**
* Function to filter results in NcSelect
*
* @param {object} option

Check warning on line 97 in src/components/AppNavigation/EditCalendarModal/SharingSearch.vue

View workflow job for this annotation

GitHub Actions / eslint

Missing JSDoc @param "option" description
* @param {string} label

Check warning on line 98 in src/components/AppNavigation/EditCalendarModal/SharingSearch.vue

View workflow job for this annotation

GitHub Actions / eslint

Missing JSDoc @param "label" description
* @param {string} search

Check warning on line 99 in src/components/AppNavigation/EditCalendarModal/SharingSearch.vue

View workflow job for this annotation

GitHub Actions / eslint

Missing JSDoc @param "search" description
*/
filterResults(option, label, search) {
return true
},
/**
* Use the cdav client call to find matches to the query from the existing Users & Groups
*
Expand Down
Loading