Skip to content

Commit d97ab18

Browse files
committed
chore(*): fix build #7009
1 parent 8e7dcc3 commit d97ab18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/tabbar/tabbar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export class IgxBottomNavComponent implements AfterViewInit, OnDestroy {
224224
}
225225

226226
private setPanelsAttributes() {
227-
const panelsArray = Array.from(this.panels);
227+
const panelsArray = this.panels.toArray();
228228
for (let index = 0; index < this.panels.length; index++) {
229229
const tabPanels = panelsArray[index] as IgxTabPanelComponent;
230230
tabPanels.nativeElement.setAttribute('id', this.getTabPanelId(index));

0 commit comments

Comments
 (0)