Remove empty dropdown choices
This commit is contained in:
@@ -9,11 +9,16 @@
|
|||||||
<div class="content-frame">
|
<div class="content-frame">
|
||||||
<label>For What Company</label>
|
<label>For What Company</label>
|
||||||
<select name="company" [(ngModel)]="selectedCompany">
|
<select name="company" [(ngModel)]="selectedCompany">
|
||||||
<option value="">-- Select Company --</option>
|
|
||||||
<option *ngFor="let cur of employeeOfList" [ngValue]="cur.company">{{ cur.company.name }}</option>
|
<option *ngFor="let cur of employeeOfList" [ngValue]="cur.company">{{ cur.company.name }}</option>
|
||||||
</select>
|
</select>
|
||||||
<button type="button" (click)="nextStep()">Next</button>
|
<button type="button" (click)="nextStep()">Next</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="footer-frame">
|
||||||
|
<span>
|
||||||
|
Choose the company you want the listing to be created under.
|
||||||
|
</span>
|
||||||
|
<button [routerLink]="['/company/connect']">CONNECT A NEW COMPANY</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -36,7 +41,6 @@
|
|||||||
<div class="half-frame">
|
<div class="half-frame">
|
||||||
<label>Job Type</label>
|
<label>Job Type</label>
|
||||||
<select name="jobType" [(ngModel)]="newListing.jobType">
|
<select name="jobType" [(ngModel)]="newListing.jobType">
|
||||||
<option value="">-- Select Job Type --</option>
|
|
||||||
<option value="Full-time">Full-time</option>
|
<option value="Full-time">Full-time</option>
|
||||||
<option value="Part-time">Part-time</option>
|
<option value="Part-time">Part-time</option>
|
||||||
<option value="Contract">Contract</option>
|
<option value="Contract">Contract</option>
|
||||||
|
|||||||
Reference in New Issue
Block a user