Changeset 6fe77af for trip-planner-front/src/app/location
- Timestamp:
- 02/06/22 18:15:51 (3 years ago)
- Branches:
- master
- Children:
- 571e0df
- Parents:
- 76712b2
- Location:
- trip-planner-front/src/app/location
- Files:
-
- 3 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/location/location-details/location-details.component.ts
r76712b2 r6fe77af 1 1 import { Component, OnInit } from '@angular/core'; 2 import { ActivatedRoute , Router} from '@angular/router';2 import { ActivatedRoute } from '@angular/router'; 3 3 import { Images } from 'src/app/_models/images'; 4 4 import { Location } from 'src/app/_models/location'; … … 17 17 images: Images[]; 18 18 19 constructor(private route: ActivatedRoute, private router: Router, privatelocationService: LocationService,19 constructor(private route: ActivatedRoute, private locationService: LocationService, 20 20 private imagesService: ImagesService) { 21 21 this.locationId = 1;
Note:
See TracChangeset
for help on using the changeset viewer.