1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

[deps] Autofill: Update prettier to v3 (#7014)

* [deps] Autofill: Update prettier to v3

* prettier formatting updates

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
This commit is contained in:
renovate[bot]
2023-11-29 16:15:20 -05:00
committed by GitHub
parent 4ff5f38e89
commit 28de9439be
1145 changed files with 5898 additions and 5612 deletions

View File

@@ -46,7 +46,7 @@ export enum BulkCollectionsDialogResult {
export class BulkCollectionsDialogComponent implements OnDestroy {
protected flexibleCollectionsEnabled$ = this.configService.getFeatureFlag$(
FeatureFlag.FlexibleCollections,
false
false,
);
protected readonly PermissionMode = PermissionMode;
@@ -71,7 +71,7 @@ export class BulkCollectionsDialogComponent implements OnDestroy {
private platformUtilsService: PlatformUtilsService,
private i18nService: I18nService,
private collectionAdminService: CollectionAdminService,
private configService: ConfigServiceAbstraction
private configService: ConfigServiceAbstraction,
) {
this.numCollections = this.params.collections.length;
const organization$ = this.organizationService.get$(this.params.organizationId);
@@ -81,7 +81,7 @@ export class BulkCollectionsDialogComponent implements OnDestroy {
return of([] as GroupView[]);
}
return this.groupService.getAll(organization.id);
})
}),
);
combineLatest([
@@ -95,7 +95,7 @@ export class BulkCollectionsDialogComponent implements OnDestroy {
this.accessItems = [].concat(
groups.map(mapGroupToAccessItemView),
users.data.map(mapUserToAccessItemView)
users.data.map(mapUserToAccessItemView),
);
this.loading = false;
@@ -120,7 +120,7 @@ export class BulkCollectionsDialogComponent implements OnDestroy {
this.organization.id,
this.params.collections.map((c) => c.id),
users,
groups
groups,
);
this.platformUtilsService.showToast("success", null, this.i18nService.t("editedCollections"));
@@ -131,7 +131,7 @@ export class BulkCollectionsDialogComponent implements OnDestroy {
static open(dialogService: DialogService, config: DialogConfig<BulkCollectionsDialogParams>) {
return dialogService.open<BulkCollectionsDialogResult, BulkCollectionsDialogParams>(
BulkCollectionsDialogComponent,
config
config,
);
}
}