diff --git a/client/src/api/index.ts b/client/src/api/index.ts index d96eaedc56f8..144a65287836 100644 --- a/client/src/api/index.ts +++ b/client/src/api/index.ts @@ -223,7 +223,7 @@ export interface User extends QuotaUsageResponse { username?: string; } -export interface AnonymousUser { +export interface AnonymousUser extends QuotaUsageResponse { id?: string; isAnonymous: true; is_admin?: false; diff --git a/client/src/components/Masthead/QuotaMeter.vue b/client/src/components/Masthead/QuotaMeter.vue index 4e3bfcbab945..06a46fc366c1 100644 --- a/client/src/components/Masthead/QuotaMeter.vue +++ b/client/src/components/Masthead/QuotaMeter.vue @@ -1,61 +1,55 @@ - - - - - - - {{ usingString + " " + usage.toFixed(0) }}% - {{ usingString + " " + totalUsageString }} - - - + + + + + + + + {{ "Usage " + usage.toFixed(0) }}% + {{ "Usage " + totalUsageString }} + + + +