Fix: Notifications-Klick-Handler durch UI.toast-TypeError blockiert

UI.toast ist ein Objekt {success,error,info}, kein Funktion.
UI.toast?.('...','info') wirft TypeError → async handler crasht still
→ setTimeout(_execNav) wird nie ausgeführt → keine Navigation

Fix: UI.toast?.info?.(…) / UI.toast?.error?.(…)
This commit is contained in:
rene 2026-04-19 10:16:46 +02:00
parent bb0250a8b5
commit 90f1c4e299
3 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@
Router, State-Management, Navigation, Initialisierung.
============================================================ */
const APP_VER = '210'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
const APP_VER = '211'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
const App = (() => {