diff options
author | Simon L <szaimen@e.mail.de> | 2023-05-19 10:14:23 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-05-19 08:29:55 +0000 |
commit | ed5d8d5c4eaf5120962d55a341e951081065f330 (patch) | |
tree | 8e7e0dcdefd53abde312cdbb2ed50d46fe8d5f83 /apps/settings | |
parent | 06d8a03315fd72a72229fb48a096e514e3e5b3b0 (diff) | |
download | nextcloud-server-ed5d8d5c4eaf5120962d55a341e951081065f330.tar.gz nextcloud-server-ed5d8d5c4eaf5120962d55a341e951081065f330.zip |
address review
Signed-off-by: Simon L <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/src/components/AdminTwoFactor.vue | 4 | ||||
-rw-r--r-- | apps/settings/src/components/AppDetails.vue | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/src/components/AdminTwoFactor.vue b/apps/settings/src/components/AdminTwoFactor.vue index 138a8421741..78dba7f3a7e 100644 --- a/apps/settings/src/components/AdminTwoFactor.vue +++ b/apps/settings/src/components/AdminTwoFactor.vue @@ -22,7 +22,7 @@ <label for="enforcedGroups"> <span>{{ t('settings', 'Enforced groups') }}</span> </label> - <NcSelect id="enforcedGroups" + <NcSelect input-id="enforcedGroups" v-model="enforcedGroups" :options="groups" :disabled="loading" @@ -38,7 +38,7 @@ <label for="excludedGroups"> <span>{{ t('settings', 'Excluded groups') }}</span> </label> - <NcSelect id="excludedGroups" + <NcSelect input-id="excludedGroups" v-model="excludedGroups" :options="groups" :disabled="loading" diff --git a/apps/settings/src/components/AppDetails.vue b/apps/settings/src/components/AppDetails.vue index fcd5452a85a..dbd26fa876f 100644 --- a/apps/settings/src/components/AppDetails.vue +++ b/apps/settings/src/components/AppDetails.vue @@ -40,7 +40,7 @@ <span>{{ t('settings', 'Limit app usage to groups') }}</span> </label> <NcSelect v-if="isLimitedToGroups(app)" - id="limitToGroups" + input-id="limitToGroups" :options="groups" :value="appGroups" :limit="5" |