Skip to content

Commit

Permalink
fix: improve baseStringList behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Sep 26, 2024
1 parent 0583b50 commit 6bc0562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/general/BaseStringList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const values = defineModel<string[]>({ required: true });
<template>
<div class="d-flex flex-row gap-2">
<div class="d-flex gap-1 flex-column w-100">
<div v-for="(val, idx) in values" :key="val" class="d-flex flex-row gap-1">
<div v-for="(val, idx) in values" :key="idx" class="d-flex flex-row gap-1">
<BFormInput v-model="values[idx]" size="sm"></BFormInput>
<BButton
size="sm"
Expand Down

0 comments on commit 6bc0562

Please sign in to comment.