From 085ae68474c126e0c9a4c339fe28631d400fadad Mon Sep 17 00:00:00 2001 From: bitWolfy Date: Mon, 30 Oct 2023 08:52:46 -0700 Subject: [PATCH] [JanitorEnhancements] Fix the tag links in the "merge into parent" box --- src/js/modules/general/JanitorEnhancements.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/modules/general/JanitorEnhancements.ts b/src/js/modules/general/JanitorEnhancements.ts index 960ced67..584ea8e3 100644 --- a/src/js/modules/general/JanitorEnhancements.ts +++ b/src/js/modules/general/JanitorEnhancements.ts @@ -81,7 +81,7 @@ export class JanitorEnhancements extends RE6Module { $("none").appendTo(container); else for (const tag of portedTags) - $("").html(`${tag} `).appendTo(container); + $("").html(`${tag} `).appendTo(container); const toggle = $("#copy_tags"); if (toggle.is(":checked")) container.css("display", "");