modify single steps to display values starting at 1
All checks were successful
ci/woodpecker/push/default Pipeline was successful

This commit is contained in:
Daniel Spittank 2023-09-16 17:33:16 +02:00
parent 57860b4273
commit 8d5d3b8468

View file

@ -71,7 +71,7 @@
<div class="column"> <div class="column">
{{ this.bezeichnung_aktueller_datenpunkt }}: {{ this.bezeichnung_aktueller_datenpunkt }}:
<button class="btn btn-primary" @click="voriger_datenpunkt">-</button> <button class="btn btn-primary" @click="voriger_datenpunkt">-</button>
&nbsp;<b style="font-size: x-large">{{ aktueller_datenpunkt }}</b &nbsp;<b style="font-size: x-large">{{ aktueller_datenpunkt + 1 }}</b
>&nbsp; >&nbsp;
<button class="btn btn-primary" @click="naechster_datenpunkt"> <button class="btn btn-primary" @click="naechster_datenpunkt">
+ +
@ -80,7 +80,7 @@
<div class="column"> <div class="column">
{{ this.bezeichnung_aktueller_prototyp }}: {{ this.bezeichnung_aktueller_prototyp }}:
<!-- <button @click="voriger_prototyp">-</button> --> <!-- <button @click="voriger_prototyp">-</button> -->
<b style="font-size: x-large">{{ aktueller_prototyp }}</b> <b style="font-size: x-large">{{ aktueller_prototyp + 1}}</b>
<!-- <button @click="naechster_prototyp">+</button> --> <!-- <button @click="naechster_prototyp">+</button> -->
</div> </div>
</div> </div>