Fix Typescript.
This commit is contained in:
parent
f46c56db2b
commit
543f18c727
@ -132,7 +132,7 @@ async function displayConverseJS (
|
|||||||
// We will catch such clicks in converse-root, and prevent default!
|
// We will catch such clicks in converse-root, and prevent default!
|
||||||
if (!ev.target) { return }
|
if (!ev.target) { return }
|
||||||
|
|
||||||
const a: HTMLAnchorElement | null = ('tagName' in ev.target) && ev.target.tagName === 'A'
|
const a: HTMLAnchorElement | null = ('tagName' in ev.target) && (ev.target as HTMLAnchorElement).tagName === 'A'
|
||||||
? ev.target as HTMLAnchorElement
|
? ev.target as HTMLAnchorElement
|
||||||
: (ev.target as HTMLElement).closest('a')
|
: (ev.target as HTMLElement).closest('a')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user