mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 01:03:35 +00:00
Added dashed line as separator and label for common formats on format selector for import (#7432)
This commit is contained in:
@@ -422,13 +422,8 @@ export class ImportComponent implements OnInit, OnDestroy {
|
||||
}
|
||||
|
||||
protected setImportOptions() {
|
||||
this.featuredImportOptions = [
|
||||
{
|
||||
id: null,
|
||||
name: "-- " + this.i18nService.t("select") + " --",
|
||||
},
|
||||
...this.importService.featuredImportOptions,
|
||||
];
|
||||
this.featuredImportOptions = [...this.importService.featuredImportOptions];
|
||||
|
||||
this.importOptions = [...this.importService.regularImportOptions].sort((a, b) => {
|
||||
if (a.name == null && b.name != null) {
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user