UX: remove whitespace in assign tag (#440)
This commit is contained in:
parent
460223d7e6
commit
c6e6a883f6
|
@ -649,10 +649,9 @@ function initialize(api) {
|
||||||
tagName === "a"
|
tagName === "a"
|
||||||
? `href="${getURL(assignedPath)}" data-auto-route="true"`
|
? `href="${getURL(assignedPath)}" data-auto-route="true"`
|
||||||
: "";
|
: "";
|
||||||
return `<${tagName} class="assigned-to discourse-tag simple" ${href}>
|
return `<${tagName} class="assigned-to discourse-tag simple" ${href}>${icon}<span title="${escapeExpression(
|
||||||
${icon}
|
note
|
||||||
<span title="${escapeExpression(note)}">${name}</span>
|
)}">${name}</span></${tagName}>`;
|
||||||
</${tagName}>`;
|
|
||||||
})
|
})
|
||||||
.join("");
|
.join("");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue