DEV: lint file
long story but we are sorting out our new GitHub actions so we missed this
This commit is contained in:
parent
bc05d3bcdd
commit
7b0cbfc1f9
|
@ -69,6 +69,8 @@ createWidget("quick-access-item", {
|
|||
_usernameHtml() {
|
||||
// Generate an empty `<span>` even if there is no username, because the
|
||||
// first `<span>` is styled differently.
|
||||
return this.attrs.username ? `<span>${this.attrs.username}</span> ` : "<span></span>";
|
||||
return this.attrs.username
|
||||
? `<span>${this.attrs.username}</span> `
|
||||
: "<span></span>";
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue