Return early if tab or panel are undefined

This commit is contained in:
Cameron Dutro 2024-06-20 14:07:13 -07:00
Родитель 2f856f15d7
Коммит 13de8370b5
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -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', {