From a6402a0bbeb875a8d2019ddd704bb3c1d39639fc Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Sat, 25 Sep 2021 21:03:40 -0700 Subject: [PATCH] core: binary state inversion ui fix --- plugins/core/package-lock.json | 4 ++-- plugins/core/package.json | 2 +- plugins/core/ui/src/interfaces/sensors/BinarySensor.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/core/package-lock.json b/plugins/core/package-lock.json index f7dadba8b..fc36a54f1 100644 --- a/plugins/core/package-lock.json +++ b/plugins/core/package-lock.json @@ -1,12 +1,12 @@ { "name": "@scrypted/core", - "version": "0.0.98", + "version": "0.0.99", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@scrypted/core", - "version": "0.0.98", + "version": "0.0.99", "license": "Apache-2.0", "dependencies": { "@scrypted/sdk": "file:../../sdk", diff --git a/plugins/core/package.json b/plugins/core/package.json index 287d99fcf..ac529cca1 100644 --- a/plugins/core/package.json +++ b/plugins/core/package.json @@ -1,6 +1,6 @@ { "name": "@scrypted/core", - "version": "0.0.98", + "version": "0.0.99", "description": "Scrypted Core plugin. Provides the UI, websocket, and engine.io APIs.", "author": "Scrypted", "license": "Apache-2.0", diff --git a/plugins/core/ui/src/interfaces/sensors/BinarySensor.vue b/plugins/core/ui/src/interfaces/sensors/BinarySensor.vue index d4a54dc28..89ac48b6d 100644 --- a/plugins/core/ui/src/interfaces/sensors/BinarySensor.vue +++ b/plugins/core/ui/src/interfaces/sensors/BinarySensor.vue @@ -14,7 +14,7 @@ small >far fa-circle - {{ !lazyValue.binaryState ? 'Binary State True ' : 'Binary State False' }} + {{ !lazyValue.binaryState ? 'Binary State False ' : 'Binary State True' }}