PR comment fix
This commit is contained in:
parent
6f4af30701
commit
ad3ffacf45
|
@ -181,8 +181,8 @@ export default {
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
certExpiryColor(monitor) {
|
certExpiryColor(monitor) {
|
||||||
if (monitor?.element?.validCert) {
|
if (monitor?.element?.validCert && monitor.element.certExpiryDaysRemaining > 7) {
|
||||||
return monitor.element.certExpiryDaysRemaining > 7 ? "primary" : "danger";
|
return "primary";
|
||||||
}
|
}
|
||||||
return "danger";
|
return "danger";
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue