use Event instead of CustomEvent

This commit is contained in:
Nico Wenterodt 2023-09-14 18:25:29 +02:00
Родитель e4401286f3
Коммит da9f67317b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -190,7 +190,7 @@ function fireCommitEvent(target: Element, detail?: Record<string, unknown>): voi
}
function fireSelectEvent(target: Element): void {
target.dispatchEvent(new CustomEvent('combobox-select', {bubbles: true}))
target.dispatchEvent(new Event('combobox-select', {bubbles: true}))
}
function visible(el: HTMLElement): boolean {