diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-07-04 12:05:30 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-07-04 15:40:51 +0200 |
commit | ba13880147a62baa3b1a7337a73355750dcc19bb (patch) | |
tree | 49fe13922d5a311a59083ee0a649fd4d7bcbe8a3 /settings/src/components/appDetails.vue | |
parent | 42912a0e2500f4ce0ff2f9921539283d4239e8a9 (diff) | |
download | nextcloud-server-ba13880147a62baa3b1a7337a73355750dcc19bb.tar.gz nextcloud-server-ba13880147a62baa3b1a7337a73355750dcc19bb.zip |
Fix invalid limit parameter when fetching groups
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'settings/src/components/appDetails.vue')
-rw-r--r-- | settings/src/components/appDetails.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/src/components/appDetails.vue b/settings/src/components/appDetails.vue index 1346378c898..ba48ea9391d 100644 --- a/settings/src/components/appDetails.vue +++ b/settings/src/components/appDetails.vue @@ -60,7 +60,8 @@ <multiselect v-if="isLimitedToGroups(app)" :options="groups" :value="appGroups" @select="addGroupLimitation" @remove="removeGroupLimitation" :options-limit="5" :placeholder="t('settings', 'Limit app usage to groups')" label="name" track-by="id" class="multiselect-vue" - :multiple="true" :close-on-select="false"> + :multiple="true" :close-on-select="false" + @search-change="asyncFindGroup"> <span slot="noResult">{{t('settings', 'No results')}}</span> </multiselect> </div> |