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
|
# Ideen
|
||||||
|
|
||||||
|
- Türchen anzeigen im DoorMapEditor
|
||||||
- Extra-Türchen (kein Buchstabe, nur manuelles Bild)
|
- Extra-Türchen (kein Buchstabe, nur manuelles Bild)
|
||||||
- Option "Nur Groß-/Kleinbuchstaben" (standard nur groß)
|
- Option "Nur Groß-/Kleinbuchstaben" (standard nur groß)
|
||||||
- Option "Leerzeichen ignorieren" (standard ja)
|
- Option "Leerzeichen ignorieren" (standard ja)
|
||||||
|
- Option "custom Zuordnung Buchstaben" (standard leer)
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
>
|
>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<h4>Buchstaben-Zuordnung</h4>
|
<h4>Zuordnung Buchstaben</h4>
|
||||||
<div class="tags are-medium">
|
<div class="tags are-medium">
|
||||||
<span
|
<span
|
||||||
v-for="(day_part, index) in day_parts"
|
v-for="(day_part, index) in day_parts"
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h4>Bilder-Zuordnung</h4>
|
<h4>Zuordnung Bilder</h4>
|
||||||
<div class="tags are-medium">
|
<div class="tags are-medium">
|
||||||
<span
|
<span
|
||||||
v-for="(day_part, index) in day_image_names"
|
v-for="(day_part, index) in day_image_names"
|
||||||
|
|
|
@ -140,7 +140,7 @@ export default class extends Vue {
|
||||||
this.loading_doors = true;
|
this.loading_doors = true;
|
||||||
|
|
||||||
this.load_doors()
|
this.load_doors()
|
||||||
.then(() => alert("Erfolgeich!"))
|
.then(() => alert("Erfolgreich!"))
|
||||||
.catch(() => {})
|
.catch(() => {})
|
||||||
.finally(() => (this.loading_doors = false));
|
.finally(() => (this.loading_doors = false));
|
||||||
}
|
}
|
||||||
|
@ -160,7 +160,7 @@ export default class extends Vue {
|
||||||
this.save_doors()
|
this.save_doors()
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.load_doors()
|
this.load_doors()
|
||||||
.then(() => alert("Erfolgeich!"))
|
.then(() => alert("Erfolgreich!"))
|
||||||
.catch(() => {})
|
.catch(() => {})
|
||||||
.finally(() => (this.saving_doors = false));
|
.finally(() => (this.saving_doors = false));
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue