Skip to content

Commit

Permalink
[JanitorEnhancements] Fix the tag links in the "merge into parent" box
Browse files Browse the repository at this point in the history
  • Loading branch information
bitWolfy committed Oct 30, 2023
1 parent cc9eb01 commit 085ae68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/modules/general/JanitorEnhancements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export class JanitorEnhancements extends RE6Module {
$("<span><i>none</i></span>").appendTo(container);
else
for (const tag of portedTags)
$("<span>").html(`<a href="/show_or_new?title=${tag}">${tag}</a> `).appendTo(container);
$("<span>").html(`<a href="/wiki_pages/show_or_new?title=${tag}">${tag}</a> `).appendTo(container);

const toggle = $("#copy_tags");
if (toggle.is(":checked")) container.css("display", "");
Expand Down

0 comments on commit 085ae68

Please sign in to comment.