Peterprobleme

This commit is contained in:
Jörn-Michael Miehe 2023-09-13 19:20:11 +00:00
parent 4143b4e415
commit f7e98ed6f7
3 changed files with 6 additions and 4 deletions

View file

@ -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)

View file

@ -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"

View file

@ -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));
})