bug fixed
This commit is contained in:
parent
e46522734a
commit
85200f420d
|
@ -430,7 +430,7 @@
|
||||||
</mat-radio-group>
|
</mat-radio-group>
|
||||||
</mat-menu>
|
</mat-menu>
|
||||||
|
|
||||||
<mat-menu #informationMenu="matMenu">
|
<mat-menu #informationMenu="matMenu" (closed)="onClosedInformationMenu($event)">
|
||||||
<div class="version-info-container" (click)="$event.stopPropagation()">
|
<div class="version-info-container" (click)="$event.stopPropagation()">
|
||||||
<div style="display: flex;">
|
<div style="display: flex;">
|
||||||
<span>{{ 'information.version' | translate }}: {{ appVersion }}</span>
|
<span>{{ 'information.version' | translate }}: {{ appVersion }}</span>
|
||||||
|
|
|
@ -499,6 +499,12 @@ export class TopBarComponent implements OnInit, OnDestroy {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onClosedInformationMenu() {
|
||||||
|
this.checkingUpdate = false;
|
||||||
|
this.checkingUpdateIsProcessing = false;
|
||||||
|
this.checkingUpdateAppVersion = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
onClickCheckUpdate(event: Event) {
|
onClickCheckUpdate(event: Event) {
|
||||||
this.checkingUpdate = true;
|
this.checkingUpdate = true;
|
||||||
this.checkingUpdateIsProcessing = true;
|
this.checkingUpdateIsProcessing = true;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user