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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 { |
|
|
|
|