refactor: use updated SelectTag component that accepts options array instead of string array to work

This commit is contained in:
Abhinav Raut
2025-03-21 23:24:06 +05:30
parent 7e16cc1a74
commit 28a6a3d246
6 changed files with 298 additions and 29 deletions

View File

@@ -39,7 +39,7 @@
>
<SelectTag
v-model="action.value"
:items="tagsStore.tagNames"
:items="tagsStore.tagNames.map((tag) => ({ label: tag, value: tag }))"
placeholder="Select tag"
/>
</div>