bug: comma placement in ConfigView

This commit is contained in:
Jörn-Michael Miehe 2023-10-29 17:28:19 +01:00
parent a781240af0
commit e1b228603e

View file

@ -58,7 +58,7 @@
<dd> <dd>
<template v-for="(door, index) in doors" :key="`door-${index}`"> <template v-for="(door, index) in doors" :key="`door-${index}`">
<span> <span>
<template v-if="door.day > 1">, </template> <template v-if="index > 0">, </template>
{{ door.day }} {{ door.day }}
</span> </span>
</template> </template>