remove whitespace at the end of the span tag
This commit is contained in:
parent
3d5b04fe97
commit
4525def72a
|
|
@ -649,9 +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