mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 00:03:07 +00:00
DoorMapEditor minor adjustments
This commit is contained in:
parent
6e4578ec5e
commit
5c38c2fcd8
1 changed files with 3 additions and 3 deletions
|
@ -6,14 +6,14 @@
|
|||
<div class="panel-tabs is-justify-content-space-between">
|
||||
<BulmaButton
|
||||
:disabled="current_step === 0"
|
||||
class="is-success"
|
||||
class="is-link"
|
||||
@click="current_step--"
|
||||
icon="fa-solid fa-backward"
|
||||
/>
|
||||
<BulmaBreadcrumbs :steps="steps" v-model="current_step" class="mb-0" />
|
||||
<BulmaButton
|
||||
:disabled="current_step === 2"
|
||||
class="is-success"
|
||||
class="is-link"
|
||||
@click="current_step++"
|
||||
icon="fa-solid fa-forward"
|
||||
/>
|
||||
|
@ -80,7 +80,7 @@ export default class extends Vue {
|
|||
public readonly steps: Step[] = [
|
||||
{ label: "Platzieren", icon: "fa-solid fa-crosshairs" },
|
||||
{ label: "Ordnen", icon: "fa-solid fa-list-ol" },
|
||||
{ label: "Überprüfen", icon: "fa-solid fa-check" },
|
||||
{ label: "Vorschau", icon: "fa-solid fa-magnifying-glass" },
|
||||
];
|
||||
public current_step = 0;
|
||||
public doors: Door[] = [];
|
||||
|
|
Loading…
Reference in a new issue