Et2Description: Fix urls from activateLinks did not open properly

This commit is contained in:
nathan 2023-04-04 14:08:24 -06:00
parent cc1d79dd74
commit 24bb8ffebf

View File

@ -222,10 +222,18 @@ export class Et2Description extends Et2Widget(LitElement) implements et2_IDetach
if(this.mimeData || this.href) if(this.mimeData || this.href)
{ {
egw(window).open_link(this.mimeData || this.href, this.extraLinkTarget, this.extraLinkPopup, null, null, this.mime); egw(window).open_link(this.mimeData || this.href, this.extraLinkTarget, this.extraLinkPopup, null, null, this.mime);
_ev.preventDefault();
return false;
} }
_ev.preventDefault(); else if(_ev.target.nodeName !== "A")
return false; {
// If it's not an activated link, just stop
_ev.preventDefault();
return false;
}
// Let links (present if activateLinks = true) do their thing normally
} }
protected wrapLink(href, value) protected wrapLink(href, value)