File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
< div class ="text p-4 bg-gray-100 rounded-lg shadow-md ">
2
2
< div class ="headline text-2xl font-bold text-gray-800 ">
3
- {{ activity?.name }}
3
+ {{ activity?.name }} | {{ activity?.type?.name }}
4
4
</ div >
5
5
< div class ="adresse mt-2 text-gray-600 ">
6
6
< p >
7
7
@if(activity?.number && activity?.street) {
8
8
< span > {{activity?.street}} {{activity?.number}}</ span > ,
9
9
}
10
- {{activity?.zip}} {{activity?.city}}</ p >
10
+ {{activity?.zip}} {{activity?.city}} {{activity?.country}} </ p >
11
11
</ div >
12
12
@if (activity?.age_restriction) {
13
13
< div class ="minimal-age mt-2 text-red-500 ">
41
41
</ div >
42
42
}
43
43
< div class ="buttons mt-6 flex gap-4 ">
44
- < button type ="button " class ="btn " onclick ="history.back() ">
45
- < i class ="bi bi-arrow-left "> </ i >
46
- < p class ="ml-2 "> Zurück</ p >
44
+ < button type ="button " class ="btn ">
45
+ < a class ="flex items-center " onclick ="history.back() ">
46
+ < i class ="bi bi-arrow-left "> </ i >
47
+ < p class ="ml-2 "> Zurück</ p >
48
+ </ a >
47
49
</ button >
48
50
@if (activity?.website) {
49
51
< button type ="button " class ="btn ">
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ export class AirtableService {
73
73
number : record . fields [ 'number' ] as string ,
74
74
zip : record . fields [ 'zip' ] as string ,
75
75
city : record . fields [ 'city' ] as string ,
76
+ country : record . fields [ 'country' ] as string ,
76
77
latitude : record . fields [ 'latitude' ] as number ,
77
78
longitude : record . fields [ 'longitude' ] as number ,
78
79
website : record . fields [ 'website' ] as string ,
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export interface Activity {
9
9
number ?: string ;
10
10
zip : string ;
11
11
city : string ;
12
+ country : string ;
12
13
latitude : number ;
13
14
longitude : number ;
14
15
website ?: string ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments