Skip to content
Snippets Groups Projects
Commit 9be2d390 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: show selected not selectable users

fixes #212
parent a9840e37
No related branches found
No related tags found
No related merge requests found
Pipeline #7009 failed
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
</li> </li>
</template> </template>
<template #selected="{ deselect }"> <template #selected="{ deselect }">
<template v-for="user in owners.choices" :key="user.id"> <template v-for="user in owners.value" :key="user.id">
<UserPreview :user="user" removable @remove="deselect(user)" /> <UserPreview :user="user" removable @remove="deselect(user)" />
</template> </template>
</template> </template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment