From ab2332d34c815d998760f390f4746d3329c81757 Mon Sep 17 00:00:00 2001 From: inoshperera Date: Fri, 19 Jan 2018 10:55:04 +0530 Subject: [PATCH] fixing https://github.com/wso2/product-iots/issues/1604 --- .../device-view.hbs | 27 +++++++++++++------ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.device-view/device-view.hbs b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.device-view/device-view.hbs index 1c5038755f..fbb4841efc 100644 --- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.device-view/device-view.hbs +++ b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.device-view/device-view.hbs @@ -55,22 +55,33 @@
{{#if device.deviceInfoAvailable}} {{#if device.BatteryLevel}} -

{{device.BatteryLevel.value}}%

+

+ + {{device.BatteryLevel.value}}% +

{{/if}} {{#if device.ramUsage}} -

{{device.ramUsage.value}}%

+

+ + {{device.ramUsage.value}}% +

{{/if}} {{#if device.internalMemory}} -

{{device.internalMemory.usage}} - GB/{{device.internalMemory.total}}GB

+

+ + {{device.internalMemory.usage}} + GB Used/{{device.internalMemory.total}}GB Total +

{{/if}} {{#if device.externalMemory}} -

{{device.externalMemory.usage}} - GB/{{device.externalMemory.total}}GB

+

+ + {{device.externalMemory.usage}} + GB Used/{{device.externalMemory.total}}GB Total +

{{/if}} {{else}} -

Battery, RAM and Storage related information are not - available yet.

+

Battery, RAM and Storage related information are not available yet.

{{/if}}
{{/zone}}