From 81ae4d3c6eb3cb504909fca15022e93aed6e2d74 Mon Sep 17 00:00:00 2001 From: Naeel Date: Thu, 16 Apr 2026 14:34:47 +0300 Subject: [PATCH] fix: export navigateToDep/navBack to window scope (ReferenceError fix) --- static/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/index.html b/static/index.html index 0cdf290..31b82d2 100644 --- a/static/index.html +++ b/static/index.html @@ -1226,6 +1226,10 @@ if(envSelect) envSelect.value = getDeckEnv(); if(getToken()) initApp(); +// Expose functions called from inline onclick attributes +window.navigateToDep = navigateToDep; +window.navBack = navBack; + })();