Skip to content

Commit

Permalink
Fix label icons
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGough committed Jul 28, 2023
1 parent 1cca5e6 commit 57f2fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/setup/label.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const createLabel = (

if (type) {
const img = document.createElement("img");
img.src = `/icons/${type}.svg`;
img.src = `./icons/${type}.svg`;
container.appendChild(img);
}

Expand Down

0 comments on commit 57f2fea

Please sign in to comment.