Skip to content

Commit

Permalink
Merge pull request #134 from tillvit/development
Browse files Browse the repository at this point in the history
Fix icon base directory
  • Loading branch information
tillvit authored Sep 20, 2024
2 parents c9aca35 + 766f185 commit 80d5053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/gui/Icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 80d5053

Please sign in to comment.