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"
|
||||
? `href="${getURL(assignedPath)}" data-auto-route="true"`
|
||||
: "";
|
||||
return `<${tagName} class="assigned-to discourse-tag simple" ${href}>
|
||||
${icon}
|
||||
<span title="${escapeExpression(note)}">${name}</span>
|
||||
</${tagName}>`;
|
||||
return `<${tagName} class="assigned-to discourse-tag simple" ${href}>${icon}<span title="${escapeExpression(
|
||||
note
|
||||
)}">${name}</span></${tagName}>`;
|
||||
})
|
||||
.join("");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue