diff --git a/frontend/src/stores/game.ts b/frontend/src/stores/game.ts index e08469b..aadb501 100644 --- a/frontend/src/stores/game.ts +++ b/frontend/src/stores/game.ts @@ -14,6 +14,7 @@ export interface Place { claim_team: Team | null; claimed_by_pubkey: string | null; claimed_at: number | null; + claimed_at_block: number | null; } export interface LinkRow { diff --git a/frontend/src/views/MapView.vue b/frontend/src/views/MapView.vue index 385d9ca..7f6c946 100644 --- a/frontend/src/views/MapView.vue +++ b/frontend/src/views/MapView.vue @@ -272,7 +272,7 @@ watch(linkSourceId, redraw); class="font-bold uppercase" :class="selectedPlace.claim_team === 'orange' ? 'text-orange-neon text-glow-orange' : 'text-green-neon text-glow-green'" > - held by {{ selectedPlace.claim_team }} + held since block {{ selectedPlace.claimed_at_block ?? '?' }} in {{ selectedPlace.claim_team }}