From 6d82bb142990f5b7390081e2de4fcfcca1626fc9 Mon Sep 17 00:00:00 2001 From: Davek145 <123872093+Davek145@users.noreply.github.com> Date: Fri, 15 Sep 2023 07:27:22 +0200 Subject: [PATCH] Fix trailing space in measurement-badge.vue Signed-off-by: David Kesl Signed-off-by: Davek145 <123872093+Davek145@users.noreply.github.com> --- .../src/components/cards/glance/location/measurement-badge.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.ui/web/src/components/cards/glance/location/measurement-badge.vue b/bundles/org.openhab.ui/web/src/components/cards/glance/location/measurement-badge.vue index 125932df6f..a22b00b438 100644 --- a/bundles/org.openhab.ui/web/src/components/cards/glance/location/measurement-badge.vue +++ b/bundles/org.openhab.ui/web/src/components/cards/glance/location/measurement-badge.vue @@ -63,7 +63,7 @@ export default { case 'co2': direct = findPoints(this.element.properties, 'Point_Measurement', true, 'Property_CO2') if (direct.length) return direct - return findPoints(allEquipmentPoints(this.element.equipment), 'Point_Measurement', true, 'Property_CO2') + return findPoints(allEquipmentPoints(this.element.equipment), 'Point_Measurement', true, 'Property_CO2') case 'luminance': direct = findPoints(this.element.properties, 'Point_Measurement', true, 'Property_Light') if (direct.length) return direct