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() {
|
colorFillStyle() {
|
||||||
return this.colorFill ? {'background': this.colorFill} : {}
|
return this.colorFill && !this.error ? {'background': this.colorFill} : {}
|
||||||
},
|
},
|
||||||
|
|
||||||
computedIcon() {
|
computedIcon() {
|
||||||
|
@ -95,7 +95,6 @@ export default {
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
color: $error-fg;
|
color: $error-fg;
|
||||||
margin-left: .5em;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue