Skip to content

Commit

Permalink
Fix single/double quote not working within member list username CSS (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
samerton committed Sep 27, 2023
1 parent 208e67a commit 770f58a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom/templates/DefaultRevamp/members/members.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
{/if}
const nameDiv = document.createElement('span');
nameDiv.style = member.group_style;
nameDiv.style = member.group_style?.replace(''', "'")?.replace('"', '"');
{if $VIEWING_LIST != "overview"}
nameDiv.innerHTML = member.username + ' ' + member.group_html.join('');
{else}
Expand Down

0 comments on commit 770f58a

Please sign in to comment.