Skip to content

Commit

Permalink
Show building abbreviation on space card
Browse files Browse the repository at this point in the history
  • Loading branch information
Siilwyn committed Jun 5, 2024
1 parent f60000a commit ff54d57
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/components/SpaceCard/SpaceCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
{{ space.name }}
</h3>
<p class="space-card__description">
{{ space.roomName }} | {{ space.floor }}
{{ space.building.abbreviation }} | {{ space.roomName }} |
{{ space.floor }}
</p>
<div class="space-card__seating">
<SvgIcon
Expand Down Expand Up @@ -55,6 +56,9 @@ defineProps<{
image?: {
url: string;
};
building: {
abbreviation: string;
};
};
}>();
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/data/nl/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@
"activeDevicesBuilding": "Apparaten in gebouw",
"occupancy": "Drukte",
"occupancy.quiet": "rustig",
"occupancy.busy": "druk",
"occupancy.crowded": "vol",
"occupancy.busy": "vrij druk",
"occupancy.crowded": "druk",
"occupancy.unknown": "onbekend",
"updated": "Laatst bijgewerkt"
}

0 comments on commit ff54d57

Please sign in to comment.