From 2e75142fe528e37f26a24f442dd1b9ee52c9a3f7 Mon Sep 17 00:00:00 2001 From: Tarun Singh Date: Thu, 13 Jul 2023 20:50:17 -0400 Subject: [PATCH] Bug fix and unknown days added --- src/components/PublicGroupList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } },