Skip to content

Commit

Permalink
Replaced NcMultiselect with NcSelect
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Klinger <[email protected]>
  • Loading branch information
nc-fkl committed Mar 15, 2024
1 parent e37621d commit 16e04cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/components/MultiselectWho.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<NcMultiselect
<NcSelect
class="approval-multiselect"
label="displayName"
track-by="trackKey"
Expand Down Expand Up @@ -42,7 +42,7 @@
<template #noResult>
{{ t('approval', 'No result.') }}
</template>
</NcMultiselect>
</NcSelect>
</template>

<script>
Expand All @@ -52,14 +52,14 @@ import { showError } from '@nextcloud/dialogs'
import axios from '@nextcloud/axios'
import NcAvatar from '@nextcloud/vue/dist/Components/NcAvatar.js'
import NcMultiselect from '@nextcloud/vue/dist/Components/NcMultiselect.js'
import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js'
export default {
name: 'MultiselectWho',
components: {
NcAvatar,
NcMultiselect,
NcSelect,
},
props: {
Expand Down

0 comments on commit 16e04cf

Please sign in to comment.