1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-04 10:43:47 +00:00

Fix merge conflict: restore cdr injection in SendV2Component

The merge commit 4f35d37 incorrectly resolved a conflict by keeping code
that references this.cdr (in constructor effect and addSend method) while
removing the cdr injection. This restores the missing injection.

Co-authored-by: Will Martin <willmartian@users.noreply.github.com>
This commit is contained in:
claude[bot]
2026-02-02 17:43:32 +00:00
parent 4f35d37ce0
commit e93488bbef

View File

@@ -92,6 +92,7 @@ export class SendV2Component {
private dialogService = inject(DialogService);
private toastService = inject(ToastService);
private logService = inject(LogService);
private cdr = inject(ChangeDetectorRef);
protected readonly useDrawerEditMode = toSignal(
this.configService.getFeatureFlag$(FeatureFlag.DesktopUiMigrationMilestone2),