mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-22 15:53:01 +00:00
Peterprobleme
This commit is contained in:
parent
4143b4e415
commit
f7e98ed6f7
3 changed files with 6 additions and 4 deletions
2
Ideen.md
2
Ideen.md
|
@ -1,5 +1,7 @@
|
|||
# Ideen
|
||||
|
||||
- Türchen anzeigen im DoorMapEditor
|
||||
- Extra-Türchen (kein Buchstabe, nur manuelles Bild)
|
||||
- Option "Nur Groß-/Kleinbuchstaben" (standard nur groß)
|
||||
- Option "Leerzeichen ignorieren" (standard ja)
|
||||
- Option "custom Zuordnung Buchstaben" (standard leer)
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
>
|
||||
<div class="card-content">
|
||||
<div class="content">
|
||||
<h4>Buchstaben-Zuordnung</h4>
|
||||
<h4>Zuordnung Buchstaben</h4>
|
||||
<div class="tags are-medium">
|
||||
<span
|
||||
v-for="(day_part, index) in day_parts"
|
||||
|
@ -21,7 +21,7 @@
|
|||
</span>
|
||||
</div>
|
||||
|
||||
<h4>Bilder-Zuordnung</h4>
|
||||
<h4>Zuordnung Bilder</h4>
|
||||
<div class="tags are-medium">
|
||||
<span
|
||||
v-for="(day_part, index) in day_image_names"
|
||||
|
|
|
@ -140,7 +140,7 @@ export default class extends Vue {
|
|||
this.loading_doors = true;
|
||||
|
||||
this.load_doors()
|
||||
.then(() => alert("Erfolgeich!"))
|
||||
.then(() => alert("Erfolgreich!"))
|
||||
.catch(() => {})
|
||||
.finally(() => (this.loading_doors = false));
|
||||
}
|
||||
|
@ -160,7 +160,7 @@ export default class extends Vue {
|
|||
this.save_doors()
|
||||
.then(() => {
|
||||
this.load_doors()
|
||||
.then(() => alert("Erfolgeich!"))
|
||||
.then(() => alert("Erfolgreich!"))
|
||||
.catch(() => {})
|
||||
.finally(() => (this.saving_doors = false));
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue