From b790e09211618db04775a11feef1fb4f7f15dcd4 Mon Sep 17 00:00:00 2001 From: Yevhen Popok Date: Tue, 30 Jan 2024 12:01:37 +0200 Subject: [PATCH] For Angular Gridster, set "maxRows" limit to "3000" --- .../modules/home/components/dashboard/dashboard.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-ngx/src/app/modules/home/components/dashboard/dashboard.component.ts b/ui-ngx/src/app/modules/home/components/dashboard/dashboard.component.ts index 6fa26ee412..cbd5d692d0 100644 --- a/ui-ngx/src/app/modules/home/components/dashboard/dashboard.component.ts +++ b/ui-ngx/src/app/modules/home/components/dashboard/dashboard.component.ts @@ -211,7 +211,7 @@ export class DashboardComponent extends PageComponent implements IDashboardCompo disableAutoPositionOnConflict: false, pushItems: false, swap: false, - maxRows: Infinity, + maxRows: 3000, minCols: this.columns ? this.columns : 24, maxCols: 3000, maxItemCols: 1000,