From bd19c5dabc8f788c7b52360e4983df3031152319 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Fri, 3 Apr 2020 12:17:00 +0200 Subject: [PATCH] Fix unit for pressure --- nymea-app/ui/customviews/WeatherView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nymea-app/ui/customviews/WeatherView.qml b/nymea-app/ui/customviews/WeatherView.qml index e234b89a..e95c4646 100644 --- a/nymea-app/ui/customviews/WeatherView.qml +++ b/nymea-app/ui/customviews/WeatherView.qml @@ -122,7 +122,7 @@ CustomViewBase { } Label { - text: (pressureState ? pressureState.value : "N/A") + " %" + text: (pressureState ? pressureState.value : "N/A") + " mBar" } ColorIcon { name: "../images/weathericons/wind.svg"