From af8f18048c70e944da552184c2d5fe7085e134c8 Mon Sep 17 00:00:00 2001 From: michaelsboost Date: Sat, 11 May 2024 16:18:34 -0500 Subject: [PATCH] minor bug fix --- .DS_Store | Bin 10244 -> 10244 bytes go/bundle.js | 2 +- go/editor.mjs | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.DS_Store b/.DS_Store index 39e143ad08f24e3da399cf118e27e2ab53c5aff8..3cea9b59942f7be5e513424890ad201829aef7bd 100644 GIT binary patch delta 80 zcmV-W0I&aqP=rvBPXQFMP`eKS6q5`PsgsEi4U-5F#~B6yWdLLVX#jKpZvb+3Q*v%> mZ*FG*0004#vJln?H#IgaAT}~Jvyc&o4YLOz`UJBP6axdiix%Ag delta 44 zcmV+{0Mq}3P=rvBPXQ9KP`eKS5|a!NsgtD<)009GN3*{YNDYyI@UsUX`UJD_6$1lp C9}tTG diff --git a/go/bundle.js b/go/bundle.js index 41ac4a3d..c9819f0b 100644 --- a/go/bundle.js +++ b/go/bundle.js @@ -157270,7 +157270,7 @@ SOFTWARE.`; let styleCSS = '/* imports */\n'; project.libraries.forEach(library => { if (library.endsWith('.js')) { - scriptTags += `\n `; + scriptTags += `\n `; } else if (library.endsWith('.css')) { styleCSS += `@import url('${library}');\n`; } else { diff --git a/go/editor.mjs b/go/editor.mjs index 337be45f..10bb89b8 100644 --- a/go/editor.mjs +++ b/go/editor.mjs @@ -783,7 +783,7 @@ SOFTWARE.`; let styleCSS = '/* imports */\n'; project.libraries.forEach(library => { if (library.endsWith('.js')) { - scriptTags += `\n `; + scriptTags += `\n `; } else if (library.endsWith('.css')) { styleCSS += `@import url('${library}');\n`; } else {