This is an automated email from the ASF dual-hosted git repository.

SvenO3 pushed a commit to branch 
4429-dashboards-do-not-use-full-width-on-large-screens
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to 
refs/heads/4429-dashboards-do-not-use-full-width-on-large-screens by this push:
     new 4030c0f5b2 Remove max grid width
4030c0f5b2 is described below

commit 4030c0f5b21dbebcface8a3bd9ece648cf0a00c5
Author: Sven Oehler <[email protected]>
AuthorDate: Mon May 4 13:31:33 2026 +0200

    Remove max grid width
---
 .../components/chart-view/grid-view/dashboard-grid-view.component.html  | 1 -
 .../components/chart-view/grid-view/dashboard-grid-view.component.ts    | 2 --
 2 files changed, 3 deletions(-)

diff --git 
a/ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.html
 
b/ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.html
index c1dbe2d9c0..1bcb1b1f57 100644
--- 
a/ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.html
+++ 
b/ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.html
@@ -26,7 +26,6 @@
     [options]="gridOptions"
     (changeCB)="onGridChange($event)"
     class="dashboard-outer"
-    [style.max-width.px]="kioskMode ? null : maxGridWidthPx"
     #grid
 >
     @for (item of dashboard.widgets; let i = $index; track item.id) {
diff --git 
a/ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.ts
 
b/ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.ts
index 7e735f7747..e37fc3904e 100644
--- 
a/ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.ts
+++ 
b/ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.ts
@@ -52,8 +52,6 @@ export class DashboardGridViewComponent
     private readonly minGridCellHeightPx = 40;
     private readonly maxGridCellHeightPx = 200;
 
-    readonly maxGridWidthPx = 1440;
-
     @Input()
     kioskMode = false;
 

Reply via email to