summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBenjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>2024-03-21 15:59:00 +0100
committerGitHub <noreply@github.com>2024-03-21 15:59:00 +0100
commit11c28a1c2b333079e40a1bc1f53127f26f8ddb91 (patch)
tree649e160348dbf71a3c4df1c6e3ce29cc2c0acc7b /apps
parent5d84d652d6edac45981154e4fe25703c33c360f2 (diff)
parent2d64245f2664c9e397914f8eeef7af37997ee4d5 (diff)
downloadnextcloud-server-11c28a1c2b333079e40a1bc1f53127f26f8ddb91.tar.gz
nextcloud-server-11c28a1c2b333079e40a1bc1f53127f26f8ddb91.zip
Merge pull request #44383 from nextcloud/backport/44381/stable27
Diffstat (limited to 'apps')
-rw-r--r--apps/workflowengine/src/components/Checks/RequestUserGroup.vue21
1 files changed, 15 insertions, 6 deletions
diff --git a/apps/workflowengine/src/components/Checks/RequestUserGroup.vue b/apps/workflowengine/src/components/Checks/RequestUserGroup.vue
index 2b248153aa6..ee774b7939f 100644
--- a/apps/workflowengine/src/components/Checks/RequestUserGroup.vue
+++ b/apps/workflowengine/src/components/Checks/RequestUserGroup.vue
@@ -22,21 +22,26 @@
<template>
<div>
- <NcSelect :value="currentValue"
+ <NcSelect :aria-label-combobox="t('workflowengine', 'Select groups')"
+ :aria-label-listbox="t('workflowengine', 'Groups')"
+ :clearable="false"
:loading="status.isLoading && groups.length === 0"
+ :placeholder="t('workflowengine', 'Type to search for group …')"
:options="groups"
- :clearable="false"
+ :value="currentValue"
label="displayname"
- @search-change="searchAsync"
+ @search="searchAsync"
@input="(value) => $emit('input', value.id)" />
</div>
</template>
<script>
-import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js'
-import axios from '@nextcloud/axios'
+import { translate as t } from '@nextcloud/l10n'
import { generateOcsUrl } from '@nextcloud/router'
+import axios from '@nextcloud/axios'
+import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js'
+
const groups = []
const status = {
isLoading: false,
@@ -69,14 +74,18 @@ export default {
},
},
async mounted() {
+ // If empty, load first chunk of groups
if (this.groups.length === 0) {
await this.searchAsync('')
}
- if (this.currentValue === null) {
+ // If a current group is set but not in our list of groups then search for that group
+ if (this.currentValue === null && this.value) {
await this.searchAsync(this.value)
}
},
methods: {
+ t,
+
searchAsync(searchQuery) {
if (this.status.isLoading) {
return