refactor: clean code

This commit is contained in:
2024-08-28 01:53:55 +03:00
parent c6059a7a60
commit 42e454c4d6
3 changed files with 8 additions and 4 deletions

View File

@ -64,8 +64,10 @@ export class TabsComponent implements AfterViewInit {
if (selected !== null)
index = selected.type;
this.chooseTabs(index).then();
this.tabs.selectedIndex = index;
if (this.tabs.selectedIndex === null || this.tabs.selectedIndex === 0)
this.chooseTabs(0).then();
else
this.tabs.selectedIndex = index;
}
protected groupSelected(id: number) {