refactor: uptime expire to show expire for ENOCONN

This commit is contained in:
Zack Spear
2023-06-21 13:24:50 -05:00
parent 3e8b617677
commit 2b8ec1f661

View File

@@ -19,7 +19,7 @@ const formattedTime = computed<string>(() => {
return dateFormat((uptimeOrExpiredTime.value).toString());
});
const countUp = computed<boolean>(() => state.value !== 'TRIAL');
const countUp = computed<boolean>(() => state.value !== 'TRIAL' && state.value !== 'ENOCONN');
const output = computed(() => {
if (!countUp.value) {