Skip to content

Commit 41e8bf8

Browse files
Properly show links when using refills through faction quick items.
1 parent 7a1e621 commit 41e8bf8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

extension/changelog.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
{ "message": "Bugs & Issues forum warning wasn't showing up in all places anymore.", "contributor": "DeKleineKobini" },
1717
{ "message": "Link market icons to the new item market.", "contributor": "DeKleineKobini" },
1818
{ "message": "Link market icons for missing sets to the new item market.", "contributor": "DeKleineKobini" },
19-
{ "message": "Link popup items to the new item market.", "contributor": "DeKleineKobini" }
19+
{ "message": "Link popup items to the new item market.", "contributor": "DeKleineKobini" },
20+
{ "message": "Properly show links when using refills through faction quick items.", "contributor": "DeKleineKobini" }
2021
],
2122
"changes": [
2223
{

extension/scripts/features/faction-quick-items/ttFactionQuickItems.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
responseWrap.innerHTML = "";
229229

230230
responseWrap.appendChild(
231-
document.newElement({ type: "span", class: `t-${result.success ? "green" : "red"} bold`, text: result.message })
231+
document.newElement({ type: "span", class: `t-${result.success ? "green" : "red"} bold`, html: result.message })
232232
);
233233
responseWrap.appendChild(
234234
document.newElement({

0 commit comments

Comments
 (0)