From ecbe670a6acf58c5a1c3cb06c63070b2b54c7865 Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 17 Mar 2026 17:32:10 +0000 Subject: [PATCH] Rebuild sx-browser.js with named-let fix and render dispatch fix Fixes the _renderCheck to check _renderMode (prevents SVG tag names like 'g' from being treated as render expressions outside render context). Co-Authored-By: Claude Opus 4.6 (1M context) --- shared/static/scripts/sx-browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/static/scripts/sx-browser.js b/shared/static/scripts/sx-browser.js index ab9d512..072aef3 100644 --- a/shared/static/scripts/sx-browser.js +++ b/shared/static/scripts/sx-browser.js @@ -14,7 +14,7 @@ // ========================================================================= var NIL = Object.freeze({ _nil: true, toString: function() { return "nil"; } }); - var SX_VERSION = "2026-03-17T17:08:05Z"; + var SX_VERSION = "2026-03-17T17:31:51Z"; function isNil(x) { return x === NIL || x === null || x === undefined; } function isSxTruthy(x) { return x !== false && !isNil(x); }