Browse Source

Merge pull request #9165 from iraznatovskyi/improvement/dashboard/resize-gridster

Fixed widget shacking
pull/9186/head
Igor Kulikov 3 years ago
committed by GitHub
parent
commit
c15067baf7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui-ngx/src/app/modules/home/components/dashboard/dashboard.component.ts

2
ui-ngx/src/app/modules/home/components/dashboard/dashboard.component.ts

@ -317,7 +317,7 @@ export class DashboardComponent extends PageComponent implements IDashboardCompo
this.gridsterResize$ = new ResizeObserver(() => {
this.onGridsterParentResize();
});
this.gridsterResize$.observe(this.gridster.el);
this.gridsterResize$.observe(this.gridster.el.parentElement);
}
onUpdateTimewindow(startTimeMs: number, endTimeMs: number, interval?: number, persist?: boolean): void {

Loading…
Cancel
Save