We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adc1027 commit 991c61dCopy full SHA for 991c61d
apps/files_sharing/src/components/SharingInput.vue
@@ -5,10 +5,10 @@
5
6
<template>
7
<div class="sharing-search">
8
- <label for="sharing-search-input">{{ t('files_sharing', 'Search for share recipients') }}</label>
+ <label :for="shareInputId">{{ t('files_sharing', 'Search for share recipients') }}</label>
9
<NcSelect ref="select"
10
v-model="value"
11
- input-id="sharing-search-input"
+ :input-id="shareInputId"
12
class="sharing-search__input"
13
:disabled="!canReshare"
14
:loading="loading"
@@ -75,6 +75,12 @@ export default {
75
},
76
77
78
+ setup() {
79
+ return {
80
+ shareInputId: `share-input-${Math.random().toString(36).slice(2, 7)}`,
81
+ }
82
+ },
83
+
84
data() {
85
return {
86
config: new Config(),
0 commit comments