New Angular based web version #1

Closed
thomas.nuyken wants to merge 150 commits from main into ddd
2 changed files with 0 additions and 2 deletions
Showing only changes of commit e13b5f2cdc - Show all commits

View File

@@ -108,7 +108,6 @@ export class EditEntryComponent implements OnInit {
.pipe(
takeUntilDestroyed(this.destroyRef),
tap((car) => {
console.log('Selected car changed (edit entry):', car);
this.selectedCarService.setSelectedCarId(car?.id ?? null);
})
)

View File

@@ -121,7 +121,6 @@ export class EntriesComponent implements OnInit {
.pipe(
takeUntilDestroyed(this.destroyRef),
tap((car) => {
console.log('Selected car changed (entries):', car);
this.selectedCarService.setSelectedCarId(car?.id ?? null);
})
)