bug fixed

This commit is contained in:
richard-loafle 2020-04-17 10:46:09 +09:00
parent a3f6c4a588
commit 1ff59c5f54

View File

@ -12,7 +12,7 @@ import { LogService } from '@ucap/ng-logger';
import { AppSelector } from '@app/store/state';
const NAVS = ['group/', 'chat/', 'organization/', 'message/'];
const NAVS = ['group', 'chat', 'organization', 'message'];
@Component({
selector: 'app-layouts-default',
@ -48,6 +48,8 @@ export class DefaultLayoutComponent implements OnInit, OnDestroy {
}
}
});
this.setTabGroup(this.router.url);
}
ngOnDestroy(): void {
@ -70,4 +72,10 @@ export class DefaultLayoutComponent implements OnInit, OnDestroy {
this.leftSidenav.open();
}
}
private setTabGroup(url: string) {
this.navTabGroup.selectedIndex = NAVS.findIndex((v) =>
url.startsWith(`/${v}`)
);
}
}