From fe7aa6f40d1be87d5935b90a27dc67969192909e Mon Sep 17 00:00:00 2001 From: SamTV12345 <40429738+samtv12345@users.noreply.github.com> Date: Wed, 24 Jul 2024 19:59:23 +0200 Subject: [PATCH] Fixed undefined html10n --- src/static/js/vendors/html10n.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/static/js/vendors/html10n.ts b/src/static/js/vendors/html10n.ts index 39da71200..dcbc66b22 100644 --- a/src/static/js/vendors/html10n.ts +++ b/src/static/js/vendors/html10n.ts @@ -990,4 +990,7 @@ class Loader { } } -export default new Html10n() +const html10n = new Html10n() +export default html10n + +window.html10n = html10n