mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-22 15:53:01 +00:00
bug: comma placement in ConfigView
This commit is contained in:
parent
a781240af0
commit
e1b228603e
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue