내 프로필 위치 수정 후 발생하는 버그 수정.

This commit is contained in:
leejinho 2020-01-02 08:43:54 +09:00
parent fe92d9ec0b
commit f2887eb01c

View File

@ -78,9 +78,6 @@ export class TopBarComponent implements OnInit, OnDestroy {
private daesangProtocolService: DaesangProtocolService, private daesangProtocolService: DaesangProtocolService,
private logger: NGXLogger private logger: NGXLogger
) { ) {
this.sessionVerinfo = this.sessionStorageService.get<VersionInfo2Response>(
KEY_VER_INFO
);
} }
ngOnInit() { ngOnInit() {
@ -96,6 +93,10 @@ export class TopBarComponent implements OnInit, OnDestroy {
KEY_LOGIN_INFO KEY_LOGIN_INFO
); );
this.sessionVerinfo = this.sessionStorageService.get<VersionInfo2Response>(
KEY_VER_INFO
);
// WebLink init.. // WebLink init..
this.initWebLink(); this.initWebLink();
}) })
@ -105,6 +106,7 @@ export class TopBarComponent implements OnInit, OnDestroy {
this.updateInfo$ = this.store.pipe( this.updateInfo$ = this.store.pipe(
select(AppStore.SettingSelector.UpdateSelector.updateInfo) select(AppStore.SettingSelector.UpdateSelector.updateInfo)
); );
} }
initWebLink(): void { initWebLink(): void {