mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 23:03:00 -04:00
feat(user-picker): fix eslint issues
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
This commit is contained in:
parent
57ec0dee99
commit
7b330cf265
2 changed files with 5 additions and 3 deletions
|
|
@ -13,11 +13,11 @@
|
|||
<NcSelect
|
||||
ref="profiles-search-input"
|
||||
v-model="selectedProfile"
|
||||
input-id="profiles-search"
|
||||
inputId="profiles-search"
|
||||
:loading="loading"
|
||||
:filterable="false"
|
||||
:placeholder="t('user_picker', 'Search for a user profile')"
|
||||
:clear-search-on-blur="() => false"
|
||||
:clearSearchOnBlur="() => false"
|
||||
:multiple="false"
|
||||
:options="options"
|
||||
label="displayName"
|
||||
|
|
@ -84,6 +84,8 @@ export default {
|
|||
},
|
||||
},
|
||||
|
||||
emits: ['submit'],
|
||||
|
||||
data() {
|
||||
return {
|
||||
searchQuery: '',
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<a :href="richObject.url" target="_blank">
|
||||
<AccountOutline :size="20" />
|
||||
<strong>
|
||||
AAA {{ richObject.email !== null ? richObject.title + ' - ' + richObject.email : richObject.title }}
|
||||
{{ richObject.email !== null ? richObject.title + ' - ' + richObject.email : richObject.title }}
|
||||
</strong>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue