diff --git a/src/components/PublicGroupList.vue b/src/components/PublicGroupList.vue index 1b75d42b0..59d639719 100644 --- a/src/components/PublicGroupList.vue +++ b/src/components/PublicGroupList.vue @@ -60,7 +60,7 @@ @click="$refs.monitorSettingDialog.show(group, monitor)" /> - {{ $t("Expiry") }}: {{ formattedCertExpiryMessage(monitor) }} + {{ $t("Expiry") }}: {{ formattedCertExpiryMessage(monitor) }}
@@ -171,7 +171,7 @@ export default { } else if (monitor?.element?.validCert === false) { return this.$t("noOrBadCertificate"); } else { - return ""; + return this.$t("Unknown") + " " + this.$tc("day", 2); } },