append icon and don't inflate it

This commit is contained in:
lightling 2024-05-30 19:18:17 -04:00
parent 695f6a3391
commit 54e19c7ef3

View file

@ -64,7 +64,9 @@ export class LinkEmbed extends HTMLElement {
this.append(_link) this.append(_link)
const _icon = ownerDocument.createElement('img') const _icon = ownerDocument.createElement('img')
_link.append(_icon)
_icon.alt = '' // decorative _icon.alt = '' // decorative
_icon.classList.add('no-inflate')
this._observers.icon = { this._observers.icon = {
element: _icon, element: _icon,
observer: (oldVal, newVal) => { observer: (oldVal, newVal) => {