Skip to content

Commit 1683185

Browse files
authored
Merge pull request #70 from Sybit-Education/fix/address
fix: changed address
2 parents e904936 + 86023cb commit 1683185

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/app/components/detail/detail.component.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
{{ activity?.name }} | {{ activity?.type?.name }}
44
</div>
55
<div class="adresse mt-2 text-gray-600">
6-
<p>{{activity?.street}} {{activity?.number}}, {{activity?.zip}} {{activity?.city}} {{activity?.country}}</p>
6+
<p>
7+
@if(activity?.number && activity?.street) {
8+
<span>{{activity?.street}} {{activity?.number}}</span>,
9+
}
10+
{{activity?.zip}} {{activity?.city}} {{activity?.country}}</p>
711
</div>
812
@if (activity?.age_restriction) {
913
<div class="minimal-age mt-2 text-red-500">

0 commit comments

Comments
 (0)