From e83a8eb1025d17baf94a6677495627cedd40f154 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Thu, 12 Dec 2024 18:23:41 +0100 Subject: [PATCH] fix: don't escape package names with scope --- assets/www-template/js/example.js.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/www-template/js/example.js.mustache b/assets/www-template/js/example.js.mustache index 3e47faf..5176d0c 100644 --- a/assets/www-template/js/example.js.mustache +++ b/assets/www-template/js/example.js.mustache @@ -1,4 +1,4 @@ -import { {{ CLASS }} } from '{{ PACKAGE_NAME }}'; +import { {{ CLASS }} } from '{{{ PACKAGE_NAME }}}'; window.testEcho = () => { const inputValue = document.getElementById("echoInput").value;