Commit 45277c87898fa2be6c70c7b4b41df2d0b2e76bb8
1 parent
a9849935
UI: Fixed error: Expression has changed after it was checked.
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -80,7 +80,7 @@ |
80 | 80 | (mousedown)="widgetMouseDown($event, widget)" |
81 | 81 | (click)="widgetClicked($event, widget)" |
82 | 82 | (contextmenu)="openWidgetContextMenu($event, widget)"> |
83 | - <div *ngIf="widgetComponent.widgetContext?.inited" fxLayout="row" fxLayoutAlign="space-between start"> | |
83 | + <div *ngIf="!!widgetComponent.widgetContext?.inited" fxLayout="row" fxLayoutAlign="space-between start"> | |
84 | 84 | <div class="tb-widget-title" fxLayout="column" fxLayoutAlign="center start" *ngIf="widget.showWidgetTitlePanel"> |
85 | 85 | <span *ngIf="widget.showTitle" |
86 | 86 | [ngClass]="{'single-row': widget.hasTimewindow}" | ... | ... |