File tree 2 files changed +22
-11
lines changed
angular-hub/src/app/pages
2 files changed +22
-11
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,11 @@ export const routeMeta: RouteMeta = {
50
50
<app-community-card [community]="community"></app-community-card>
51
51
</li>
52
52
} @empty {
53
- <p class="col-span-2 ">
54
- No event matching the filter
53
+ <p class="col-span-full ">
54
+ No event matching the filter:
55
55
56
56
@if (selectedCountry()) {
57
- {{ selectedCountry() }}
57
+ <span> {{ selectedCountry() }}</span>
58
58
}
59
59
</p>
60
60
}
Original file line number Diff line number Diff line change @@ -75,15 +75,26 @@ export const routeMeta: RouteMeta = {
75
75
<app-event-card [event]="event"></app-event-card>
76
76
</li>
77
77
} @empty {
78
- <p class="col-span-2">
79
- No event matching the filter
80
- @if (date()) {
81
- {{ date() | date: 'MM/DD/YYYY' }}
82
- }
78
+ <p class="col-span-full">
79
+ No event matching filter(s):
83
80
84
- @if (selectedLanguage()) {
85
- {{ selectedLanguage() }}
86
- }
81
+ <span>
82
+ @if (date()) {
83
+ {{ date() | date: 'dd MMM YYYY' }}
84
+ }
85
+
86
+ @if (selectedLanguage()) {
87
+ @if (isRemote()) {
88
+ , {{ selectedLanguage() }}
89
+ } @else {
90
+ and {{ selectedLanguage() }}
91
+ }
92
+ }
93
+
94
+ @if (isRemote()) {
95
+ and Remote Only
96
+ }
97
+ </span>
87
98
</p>
88
99
}
89
100
</ul>
You can’t perform that action at this time.
0 commit comments