UX: remove whitespace in assign tag

This commit is contained in:
awesomerobot 2023-02-07 15:21:42 -05:00
parent 460223d7e6
commit 3d5b04fe97
1 changed files with 2 additions and 3 deletions

View File

@ -650,9 +650,8 @@ function initialize(api) {
? `href="${getURL(assignedPath)}" data-auto-route="true"`
: "";
return `<${tagName} class="assigned-to discourse-tag simple" ${href}>
${icon}
<span title="${escapeExpression(note)}">${name}</span>
</${tagName}>`;
${icon}<span title="${escapeExpression(note)}">${name}</span>
</${tagName}>`;
})
.join("");
}