From bb6eb92ba14a3bc6b2da671499fef70cf8fb2d98 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Fri, 20 Jun 2025 13:34:14 -0600 Subject: [PATCH] fix ? instead of 0 in rate limits, update location verbiage --- src/views/AccountViewView.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index c3fee747..be8a132e 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -349,8 +349,8 @@

- For your security, choose a location nearby but not exactly at your - place. + The location you choose will be shared with the world until you remove this checkbox. + For your security, choose a location nearby but not exactly at your true location, like at your town center.

You have done {{ endorserLimits?.doneClaimsThisWeek || "?" }} claim{{ + >{{ endorserLimits?.doneClaimsThisWeek ?? "?" }} claim{{ endorserLimits?.doneClaimsThisWeek === 1 ? "" : "s" }} - out of {{ endorserLimits?.maxClaimsPerWeek || "?" }} for this + out of {{ endorserLimits?.maxClaimsPerWeek ?? "?" }} for this week. Your claims counter resets at {{ readableDate(endorserLimits?.nextWeekBeginDateTime) @@ -449,14 +449,14 @@ You have done {{ - endorserLimits?.doneRegistrationsThisMonth || "?" + endorserLimits?.doneRegistrationsThisMonth ?? "?" }} registration{{ endorserLimits?.doneRegistrationsThisMonth === 1 ? "" : "s" }} out of - {{ endorserLimits?.maxRegistrationsPerMonth || "?" }} for this + {{ endorserLimits?.maxRegistrationsPerMonth ?? "?" }} for this this month. (You cannot register anyone on your first day.) Your registration counter resets at @@ -467,11 +467,11 @@

You have uploaded {{ imageLimits?.doneImagesThisWeek || "?" }} image{{ + >{{ imageLimits?.doneImagesThisWeek ?? "?" }} image{{ imageLimits?.doneImagesThisWeek === 1 ? "" : "s" }} - out of {{ imageLimits?.maxImagesPerWeek || "?" }} for this + out of {{ imageLimits?.maxImagesPerWeek ?? "?" }} for this week. Your image counter resets at {{ readableDate(imageLimits?.nextWeekBeginDateTime)