diff --git a/bundles/org.openhab.ui/doc/components/oh-cell.md b/bundles/org.openhab.ui/doc/components/oh-cell.md
index 9fe490c9c4..031ff421f5 100644
--- a/bundles/org.openhab.ui/doc/components/oh-cell.md
+++ b/bundles/org.openhab.ui/doc/components/oh-cell.md
@@ -240,6 +240,11 @@ A regular or expandable cell
Colors of the trend line (see vue-trend)
+
+
+ Amount of minutes between each point of the trendline (default: 60). Affected by persistence strategies different from "every minute"
+
+
diff --git a/bundles/org.openhab.ui/doc/components/oh-grid-layout.md b/bundles/org.openhab.ui/doc/components/oh-grid-layout.md
index 0e0f08052d..58892f3378 100644
--- a/bundles/org.openhab.ui/doc/components/oh-grid-layout.md
+++ b/bundles/org.openhab.ui/doc/components/oh-grid-layout.md
@@ -56,7 +56,7 @@ Arranges widgets on a grid of squares with user-defined sizes
- Screen width in pixels (default 720)
+ Screen height in pixels (default 720)
diff --git a/bundles/org.openhab.ui/doc/components/oh-label-card.md b/bundles/org.openhab.ui/doc/components/oh-label-card.md
index 2cce314c1c..a867303991 100644
--- a/bundles/org.openhab.ui/doc/components/oh-label-card.md
+++ b/bundles/org.openhab.ui/doc/components/oh-label-card.md
@@ -287,6 +287,11 @@ Display the state of an item in a card
Colors of the trend line (see vue-trend)
+
+
+ Amount of minutes between each point of the trendline (default: 60). Affected by persistence strategies different from "every minute"
+
+
diff --git a/bundles/org.openhab.ui/doc/components/oh-label-cell.md b/bundles/org.openhab.ui/doc/components/oh-label-cell.md
index c63bd81ad2..b865c1a4bc 100644
--- a/bundles/org.openhab.ui/doc/components/oh-label-cell.md
+++ b/bundles/org.openhab.ui/doc/components/oh-label-cell.md
@@ -256,6 +256,11 @@ A cell with a big label to show a short item state value
Colors of the trend line (see vue-trend)
+
+
+ Amount of minutes between each point of the trendline (default: 60). Affected by persistence strategies different from "every minute"
+
+
diff --git a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/layout/index.js b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/layout/index.js
index 3183b3a699..992c16d3d0 100644
--- a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/layout/index.js
+++ b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/layout/index.js
@@ -54,7 +54,7 @@ export function OhGridLayoutDefinition () {
.paramGroup(pg('screenSettings', 'Screen Settings'), [
pn('screenWidth', 'Screen Width', 'Screen width in pixels (default 1280)')
.v((value, configuration, configDescription, parameters) => { return configuration.layoutType === 'fixed' }),
- pn('screenHeight', 'Screen Height', 'Screen width in pixels (default 720)')
+ pn('screenHeight', 'Screen Height', 'Screen height in pixels (default 720)')
.v((value, configuration, configDescription, parameters) => { return configuration.layoutType === 'fixed' }),
pb('scale', 'Scaling', 'Scale content to other screen widths (can lead to unexpected styling issues) (default false)')
.v((value, configuration, configDescription, parameters) => { return configuration.layoutType === 'fixed' })