Return early if tab or panel are undefined
This commit is contained in:
Родитель
2f856f15d7
Коммит
13de8370b5
|
@ -362,6 +362,9 @@ export class TabContainerElement extends HTMLElement {
|
|||
const selectedTab = tabs[index]
|
||||
const selectedPanel = panels[index]
|
||||
|
||||
if (!selectedTab) return
|
||||
if (!selectedPanel) return
|
||||
|
||||
if (this.#setupComplete) {
|
||||
const cancelled = !this.dispatchEvent(
|
||||
new TabContainerChangeEvent('tab-container-change', {
|
||||
|
|
Загрузка…
Ссылка в новой задаче