forked from platypush/platypush
Better management for entity error icons
This commit is contained in:
parent
7f575bacaa
commit
5c68365188
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue