use correct prop name for nextcloud/vue vue3

Signed-off-by: grnd-alt <github@belakkaf.net>
This commit is contained in:
grnd-alt
2025-05-12 11:25:39 +02:00
parent f4acf38035
commit 1110a4f125
2 changed files with 1 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
<div class="selector-wrapper--icon">
<TagMultiple :size="20" />
</div>
<NcSelect :value="assignedLabels"
<NcSelect v-model="assignedLabels"
class="selector-wrapper--selector"
:multiple="true"
:disabled="disabled"

View File

@@ -179,7 +179,6 @@ export default {
.sort((a, b) => a.order - b.order || a.createdAt - b.createdAt)
},
cardById: state => (id) => {
alert('cardById')
return state.cards.find((card) => card.id === id)
},
},