Skip to content

Commit fde4697

Browse files
committed
fixes
1 parent 371548a commit fde4697

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

MyApp.Client/src/app/bookings/booking-edit.component.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<app-page title="Edit Booking">
22

33
<form-loading></form-loading>
4-
<error-summary except="name,roomType,roomNumber,cost,bookingStartDate,notes"></error-summary>
54

65
@if (booking().id) {
76
<form class="grid gap-4 py-4" (ngSubmit)="save()">
@@ -64,6 +63,9 @@
6463
</div>
6564
</form>
6665
}
66+
@else {
67+
<error-summary></error-summary>
68+
}
6769

6870
<div class="mt-16 flex justify-center gap-x-4">
6971
<src-page path="bookings/booking-edit.component.html"></src-page>

MyApp.Client/src/app/weather/weather.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export class WeatherComponent implements OnInit {
2121

2222
public error: ResponseStatus | null = null;
2323
public forecasts: Forecast[] = [];
24-
public testValue:string = '';
2524

2625
ngOnInit() {
2726
this.getForecasts();

0 commit comments

Comments
 (0)