Better management for entity error icons

This commit is contained in:
Fabio Manganiello 2022-10-14 23:37:36 +02:00
parent 7f575bacaa
commit 5c68365188
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 1 additions and 2 deletions

View File

@ -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>