Skip to content

Commit 2a545e3

Browse files
committed
feat(user-picker): fix eslint issues
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
1 parent 9a1b77f commit 2a545e3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

apps/user_picker/src/components/ProfilesCustomPicker.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
<NcSelect
1414
ref="profiles-search-input"
1515
v-model="selectedProfile"
16-
input-id="profiles-search"
16+
inputId="profiles-search"
1717
:loading="loading"
1818
:filterable="false"
1919
:placeholder="t('user_picker', 'Search for a user profile')"
20-
:clear-search-on-blur="() => false"
20+
:clearSearchOnBlur="() => false"
2121
:multiple="false"
2222
:options="options"
2323
label="displayName"
@@ -84,6 +84,8 @@ export default {
8484
},
8585
},
8686
87+
emits: ['submit'],
88+
8789
data() {
8890
return {
8991
searchQuery: '',

0 commit comments

Comments
 (0)