1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

org imports

This commit is contained in:
Kyle Spearrin
2018-07-05 23:38:36 -04:00
parent 6193bf431d
commit 6f75e0bba0
6 changed files with 190 additions and 82 deletions

View File

@@ -8,8 +8,10 @@
<label for="type">1. {{'selectFormat' | i18n}}</label>
<select id="type" name="Format" [(ngModel)]="format" class="form-control" required>
<option *ngFor="let o of featuredImportOptions" [ngValue]="o.id">{{o.name}}</option>
<option value="-" disabled></option>
<option *ngFor="let o of importOptions" [ngValue]="o.id">{{o.name}}</option>
<ng-container *ngIf="importOptions && importOptions.length">
<option value="-" disabled></option>
<option *ngFor="let o of importOptions" [ngValue]="o.id">{{o.name}}</option>
</ng-container>
</select>
</div>
</div>