Skip to content

Commit

Permalink
Properly show links when using refills through faction quick items.
Browse files Browse the repository at this point in the history
  • Loading branch information
DeKleineKobini committed Dec 25, 2024
1 parent 7a1e621 commit 41e8bf8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion extension/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
{ "message": "Bugs & Issues forum warning wasn't showing up in all places anymore.", "contributor": "DeKleineKobini" },
{ "message": "Link market icons to the new item market.", "contributor": "DeKleineKobini" },
{ "message": "Link market icons for missing sets to the new item market.", "contributor": "DeKleineKobini" },
{ "message": "Link popup items to the new item market.", "contributor": "DeKleineKobini" }
{ "message": "Link popup items to the new item market.", "contributor": "DeKleineKobini" },
{ "message": "Properly show links when using refills through faction quick items.", "contributor": "DeKleineKobini" }
],
"changes": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
responseWrap.innerHTML = "";

responseWrap.appendChild(
document.newElement({ type: "span", class: `t-${result.success ? "green" : "red"} bold`, text: result.message })
document.newElement({ type: "span", class: `t-${result.success ? "green" : "red"} bold`, html: result.message })
);
responseWrap.appendChild(
document.newElement({
Expand Down

0 comments on commit 41e8bf8

Please sign in to comment.