refactor: uptime expire to show expire for ENOCONN

This commit is contained in:
Zack Spear
2023-06-21 13:24:50 -05:00
committed by Zack Spear
parent 3f64d8e405
commit 2d03a9ad76

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) {