Ignore:
Timestamp:
02/06/22 18:19:53 (2 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Parents:
6fe77af
Message:

final presentation

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  
    1212            <td>
    1313                <button pButton pRipple type="button" icon="pi pi-heart" class="p-button-rounded p-button-help"
    14                     (click)="selectPlanner(planner)" ></button>
     14                    (click)="selectPlanner(planner)"></button>
    1515            </td>
    1616        </tr>
    1717    </ng-template>
    1818</p-table>
    19 
  • trip-planner-front/src/app/location/add-location/add-location.component.ts

    r6fe77af r571e0df  
    114114      if(this.name !== null && this.desc !== null && this.address !== null
    115115        && this.trivia != null  && this.priority !== null && this.cityId !== 0 && this.regionId !== 0){
    116           this.isCompleted = true;
    117        
     116          this.isCompleted = true;       
    118117          this.locationService.save(this.locationDto).subscribe(
    119118            data => {
  • trip-planner-front/src/app/location/location.component.html

    r6fe77af r571e0df  
    44<p-toast></p-toast>
    55<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>
    78<table class="table">
    89  <thead>
     
    2829  </tbody>
    2930</table>
    30 
Note: See TracChangeset for help on using the changeset viewer.