Et2LinkList: Fix context menu "Save As" gave error

Cannot read properties of undefined (reading 'dispatchEvent')
This commit is contained in:
nathan 2022-12-05 17:05:10 -07:00
parent c9186240c8
commit 2188791540

View File

@ -445,7 +445,7 @@ export class Et2LinkList extends Et2LinkString
let evt = document.createEvent('MouseEvent');
evt.initMouseEvent('click', true, true, window, 1, 0, 0, 0, 0, false, false, false, false, 0, null);
a[0].dispatchEvent(evt);
a.dispatchEvent(evt);
a.remove();
return false;
}