diff --git a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/map/index.js b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/map/index.js
index 2f241e1d7..7c154662a 100644
--- a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/map/index.js
+++ b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/map/index.js
@@ -28,7 +28,7 @@ export const OhMapPageDefinition = () => new WidgetDefinition('oh-map-page', 'Ma
export const OhMapMarkerDefinition = () => new WidgetDefinition('oh-map-marker', 'Map Marker', 'An icon on a map', 'map_pin')
.paramGroup(pg('marker', 'Marker', 'General marker settings'), [
LabelParam(),
- pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon)')
+ pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon)')
])
.paramGroup(pg('position', 'Position', 'Position'), [
ItemParam(),
diff --git a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/plan/index.js b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/plan/index.js
index 08dcd37f0..faac92492 100644
--- a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/plan/index.js
+++ b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/plan/index.js
@@ -27,7 +27,7 @@ export const OhPlanMarkerDefinition = () => new WidgetDefinition('oh-plan-marker
pi('item', 'Item', 'The item whose state to display on this marker')
])
.paramGroup(pg('icon', 'Icon'), [
- pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon) or f7:iconName
(Framework7 icon)'),
+ pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon) or f7:iconName
(Framework7 icon)'),
pb('iconUseState', 'Icon depends on state', 'Use the state of the item to get a dynamic icon (for openHAB icons only)'),
pn('iconSize', 'Icon Size', 'Size of the icon in pixels (40 by default)'),
pt('iconColor', 'Icon Color', 'Color of the icon (for Framework7/Material icons); use expression for dynamic colors')
diff --git a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/cards.js b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/cards.js
index 9f7d6a36b..821462814 100644
--- a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/cards.js
+++ b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/cards.js
@@ -24,7 +24,7 @@ export const OhLabelCardDefinition = () => new WidgetDefinition('oh-label-card',
pt('background', 'Background style', 'Background style (in CSS "background" attribute format)'),
pt('fontSize', 'Font Size', 'Font size (e.g. "34px")'),
pt('fontWeight', 'Font Weight', 'Font weight (e.g. "normal" or "bold")'),
- pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon) or f7:iconName
(Framework7 icon)'),
+ pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon) or f7:iconName
(Framework7 icon)'),
pt('iconColor', 'Icon Color', 'Not applicable to openHAB icons').a(),
pn('iconSize', 'Icon Size', 'Size of the icon in px').a(),
pb('iconUseState', 'Icon depends on state', 'Use the state of the item to get a dynamic icon (for openHAB icons only)').a(),
diff --git a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/cells.js b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/cells.js
index a3f8eb752..0815af6f6 100644
--- a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/cells.js
+++ b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/cells.js
@@ -11,7 +11,7 @@ export const CellParameters = () => [
pt('title', 'Title', 'Title of the cell'),
pt('subtitle', 'Subtitle', 'Subtitle of the cell'),
pt('footer', 'Footer', 'Footer of the cell'),
- pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon) or f7:iconName
(Framework7 icon)'),
+ pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon) or f7:iconName
(Framework7 icon)'),
pt('color', 'Highlight Color', 'Color to use when highlighted'),
pt('on', '"On" expression', 'Expression to determine when the card should be highlighted. If blank, determine automatically from the primary bound item if applicable.').a()
]
diff --git a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/listitems.js b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/listitems.js
index 93f3ad40c..a87905d65 100644
--- a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/listitems.js
+++ b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/standard/listitems.js
@@ -9,7 +9,7 @@ export const ListItemParameters = () => [
pt('title', 'Title', 'Title of the item'),
pt('subtitle', 'Subtitle', 'Subtitle of the item'),
pt('after', 'After', 'Text to display on the opposite side of the item (set either this or a badge)').a(),
- pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon) or f7:iconName
(Framework7 icon)'),
+ pt('icon', 'Icon', 'Use oh:iconName
(openHAB icon) or f7:iconName
(Framework7 icon)'),
pt('iconColor', 'Icon Color', 'Not applicable to openHAB icons').a(),
pb('iconUseState', 'Icon depends on state', 'Use the state of the item to get a dynamic icon (for openHAB icons only)').a()
]
diff --git a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/system/icon.js b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/system/icon.js
index f5dfcefc1..101f393c9 100644
--- a/bundles/org.openhab.ui/web/src/assets/definitions/widgets/system/icon.js
+++ b/bundles/org.openhab.ui/web/src/assets/definitions/widgets/system/icon.js
@@ -1,7 +1,7 @@
import { pb, pt } from '../helpers'
export default () => [
- pb('icon', 'Icon', 'openHAB icon'),
+ pb('icon', 'Icon', 'openHAB icon'),
pt('width', 'Width', ''),
pt('inputmode', 'Input Mode', 'Type of data that might be entered: see MDN docs'),
pt('placeholder', 'Placeholder', 'Placeholder text'),
diff --git a/bundles/org.openhab.ui/web/src/components/item/metadata/item-metadata-alexa.vue b/bundles/org.openhab.ui/web/src/components/item/metadata/item-metadata-alexa.vue
index 47062bf4b..939e139e6 100644
--- a/bundles/org.openhab.ui/web/src/components/item/metadata/item-metadata-alexa.vue
+++ b/bundles/org.openhab.ui/web/src/components/item/metadata/item-metadata-alexa.vue
@@ -29,7 +29,7 @@
-
-
-