1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 12:13:45 +00:00

[PM-27220] Switch export filetype select to simple select (#17865)

This commit is contained in:
Mike Amirault
2026-02-05 11:30:37 -05:00
committed by GitHub
parent 5c7bba00f3
commit 5e31ba9cce

View File

@@ -34,9 +34,11 @@
<bit-form-field>
<bit-label>{{ "fileFormat" | i18n }}</bit-label>
<bit-select formControlName="format">
<bit-option *ngFor="let f of formatOptions$ | async" [value]="f.format" [label]="f.name" />
</bit-select>
<select bitInput formControlName="format">
@for (f of formatOptions$ | async; track f.format) {
<option [value]="f.format">{{ f.name }}</option>
}
</select>
</bit-form-field>
<ng-container *ngIf="format === 'encrypted_json'">