From b635e598857f49fa17384b0229785f1e24d45c4d Mon Sep 17 00:00:00 2001 From: Yevhen Popok Date: Fri, 26 Jan 2024 09:56:03 +0200 Subject: [PATCH 1/2] For Angular Gridster increase "maxRows" limit to "Infinity" --- .../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 469630c212..6fa26ee412 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: 100, + maxRows: Infinity, minCols: this.columns ? this.columns : 24, maxCols: 3000, maxItemCols: 1000, From b790e09211618db04775a11feef1fb4f7f15dcd4 Mon Sep 17 00:00:00 2001 From: Yevhen Popok Date: Tue, 30 Jan 2024 12:01:37 +0200 Subject: [PATCH 2/2] 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,