Changeset 571e0df for trip-planner-front/src/app/location
- Timestamp:
- 02/06/22 18:19:53 (3 years ago)
- Branches:
- master
- Parents:
- 6fe77af
- Location:
- trip-planner-front/src/app/location
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/location/add-location-to-planner-panel/add-location-to-planner-panel.component.html
r6fe77af r571e0df 12 12 <td> 13 13 <button pButton pRipple type="button" icon="pi pi-heart" class="p-button-rounded p-button-help" 14 (click)="selectPlanner(planner)" 14 (click)="selectPlanner(planner)"></button> 15 15 </td> 16 16 </tr> 17 17 </ng-template> 18 18 </p-table> 19 -
trip-planner-front/src/app/location/add-location/add-location.component.ts
r6fe77af r571e0df 114 114 if(this.name !== null && this.desc !== null && this.address !== null 115 115 && this.trivia != null && this.priority !== null && this.cityId !== 0 && this.regionId !== 0){ 116 this.isCompleted = true; 117 116 this.isCompleted = true; 118 117 this.locationService.save(this.locationDto).subscribe( 119 118 data => { -
trip-planner-front/src/app/location/location.component.html
r6fe77af r571e0df 4 4 <p-toast></p-toast> 5 5 <h3>Here are all locations</h3> 6 <button pButton pRipple type="button" icon="pi pi-bell" class="p-button-rounded p-button-warning" label="Back to my Planners" (click)="onClickBackToMyPlanners()"></button> 6 <button pButton pRipple type="button" icon="pi pi-bell" class="p-button-rounded p-button-warning" 7 label="Back to my Planners" (click)="onClickBackToMyPlanners()"></button> 7 8 <table class="table"> 8 9 <thead> … … 28 29 </tbody> 29 30 </table> 30
Note:
See TracChangeset
for help on using the changeset viewer.