From d9fee1d1ad899ee73849c7cfa79f9bddbeb28139 Mon Sep 17 00:00:00 2001 From: ronymc Date: Fri, 2 May 2025 16:03:14 +0200 Subject: [PATCH] Fix-Reordering URIs in an item loses match detection for all URIs #14188. (#14315) Co-authored-by: SmithThe4th --- .../components/autofill-options/autofill-options.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/vault/src/cipher-form/components/autofill-options/autofill-options.component.ts b/libs/vault/src/cipher-form/components/autofill-options/autofill-options.component.ts index 5b1e4eca10..ac670a3933 100644 --- a/libs/vault/src/cipher-form/components/autofill-options/autofill-options.component.ts +++ b/libs/vault/src/cipher-form/components/autofill-options/autofill-options.component.ts @@ -239,7 +239,7 @@ export class AutofillOptionsComponent implements OnInit { (control) => Object.assign(new LoginUriView(), { uri: control.value.uri, - matchDetection: control.value.matchDetection ?? null, + match: control.value.matchDetection ?? null, }) as LoginUriView, ); return cipher;