This is an automated email from the ASF dual-hosted git repository.
SvenO3 pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to refs/heads/dev by this push:
new 5c1f6beef6 fix(#4429): Dashboards do not use full width on large
screens (#4431)
5c1f6beef6 is described below
commit 5c1f6beef6fbfe7ff6c43d6d9c9089416576f953
Author: Sven Oehler <[email protected]>
AuthorDate: Tue May 5 09:52:03 2026 +0200
fix(#4429): Dashboards do not use full width on large screens (#4431)
---
.../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;