Minor checking fix for UI

This commit is contained in:
Dillon Ngo
2024-04-02 21:28:33 +08:00
parent c6208e5b04
commit 83bff8c9ad
+1 -1
View File
@@ -11,7 +11,7 @@ export default {
return state.vouchersCount;
},
showVoucherUpdateIndicator: state => {
if (!state.lastSeenVoucherTimestamp && state.voucherCount > 0) {
if (!state.lastSeenVoucherTimestamp && state.latestVoucherTimestamp && state.voucherCount > 0) {
return true;
}
if (!state.latestVoucherTimestamp) {