Skip to content

Commit da15d63

Browse files
committed
chore(*): fix build #6920
1 parent ab18d8f commit da15d63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ export class IgxTabsComponent implements IgxTabsBase, AfterViewInit, OnDestroy {
380380
}
381381

382382
private setGroupsAttributes() {
383-
const groupsArray = Array.from(this.groups);
383+
const groupsArray = this.groups.toArray();
384384
for (let index = 0; index < this.groups.length; index++) {
385385
const tabsGroup = groupsArray[index] as IgxTabsGroupComponent;
386386
tabsGroup.nativeElement.setAttribute('id', this.getTabsGroupId(index));

0 commit comments

Comments
 (0)