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

[PM-27220] Switch export filetype select to simple select

This commit is contained in:
Mike Amirault
2025-12-08 11:49:48 -05:00
parent a0943c3100
commit 93b438119e

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'">