From 5c68365188f2a4d6d7d6f8a0a078d32779d97f68 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 14 Oct 2022 23:37:36 +0200 Subject: [PATCH] Better management for entity error icons --- .../http/webapp/src/components/panels/Entities/EntityIcon.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platypush/backend/http/webapp/src/components/panels/Entities/EntityIcon.vue b/platypush/backend/http/webapp/src/components/panels/Entities/EntityIcon.vue index e977be11..5137ae7c 100644 --- a/platypush/backend/http/webapp/src/components/panels/Entities/EntityIcon.vue +++ b/platypush/backend/http/webapp/src/components/panels/Entities/EntityIcon.vue @@ -49,7 +49,7 @@ export default { }, colorFillStyle() { - return this.colorFill ? {'background': this.colorFill} : {} + return this.colorFill && !this.error ? {'background': this.colorFill} : {} }, computedIcon() { @@ -95,7 +95,6 @@ export default { .error { color: $error-fg; - margin-left: .5em; } }