Skip to content

Commit

Permalink
update field name after metrics update
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-verida committed Jul 31, 2023
1 parent 64fc8d6 commit eb536fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ type NodeSummaryData = {
country: string;
region: string;
subregion: string;
currentUserContexts: number;
maxUserContexts: number;
storageSlotsUsed: number;
maxStorageSlots: number;
};
type NodeSummaryAsFields = {
[x: string]: string;
Expand Down Expand Up @@ -182,7 +182,7 @@ export default defineComponent({
country: n.country,
region: n.region,
subregion: n.subregion,
usage: `${n.currentUserContexts} of ${n.maxUserContexts}`,
usage: `${n.storageSlotsUsed} of ${n.maxStorageSlots}`,
});
}
Expand Down

0 comments on commit eb536fa

Please sign in to comment.