From 766f18549c425c294d64cf42712605479f0a0f19 Mon Sep 17 00:00:00 2001 From: tillvit Date: Thu, 19 Sep 2024 21:11:30 -0400 Subject: [PATCH] Fix icon base directory --- app/src/gui/Icons.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/gui/Icons.ts b/app/src/gui/Icons.ts index f15d8929..9702727e 100644 --- a/app/src/gui/Icons.ts +++ b/app/src/gui/Icons.ts @@ -83,7 +83,7 @@ export class Icons { } private static fetchIcon(id: string) { - fetch(`/assets/svg/${id}.svg`) + fetch(`/smeditor/assets/svg/${id}.svg`) .then(res => res.text()) .then(text => { this.cache.set(id, text)