From 9865bd176bde875b1f1eaf4d4319c5c3b298ff69 Mon Sep 17 00:00:00 2001 From: ulrich Date: Sat, 10 Apr 2021 18:14:44 +0000 Subject: [PATCH] Fehler bei Abspielliste-Formular bei Cancel behoben --- www/ui/js/app.js | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/www/ui/js/app.js b/www/ui/js/app.js index e9ffaa4..e6f0d1e 100644 --- a/www/ui/js/app.js +++ b/www/ui/js/app.js @@ -147,7 +147,8 @@ this.abspielliste_form = function(al) { self.entitaet_form('Abspielliste', al, al.name, "data/tpl/form_abspielliste.tpl", '../api/store/Abspielliste/', - '#abspielliste-name', function() { + '#abspielliste-name', function(event) { + event.preventDefault(); self.abspielliste_auswahl_fuellen(); self.abspielliste_liste(); }); -- Gitblit v1.9.3