Browse Source

No magic numbers.

pull/878/head
Sebastian 4 years ago
parent
commit
1505e2625c
  1. 2
      frontend/src/app/features/dashboard/pages/dashboard-page.component.ts

2
frontend/src/app/features/dashboard/pages/dashboard-page.component.ts

@ -91,7 +91,7 @@ export class DashboardPageComponent extends ResourceOwner implements AfterViewIn
}
public ngAfterViewChecked() {
this.extendedHeight = `${this.grid.gridRows.length * this.grid.curRowHeight - 10}px`;
this.extendedHeight = `${this.grid.gridRows.length * this.grid.curRowHeight - (this.gridOptions.margin || 0)}px`;
}
public changeIsStacked(value: boolean) {

Loading…
Cancel
Save