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 8ce4aef commit 4b296f6
Showing 1 changed file with 5 additions and 1 deletion.
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

0 comments on commit 4b296f6

Please sign in to comment.