1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

[PM-10124] Browser refresh update for autofill settings component returning invalid data type (#10289)

This commit is contained in:
Cesar Gonzalez
2024-07-31 09:59:14 -05:00
committed by GitHub
parent 766c2f4b9c
commit 0c84f44806

View File

@@ -159,7 +159,7 @@
>
<option
*ngFor="let o of autofillOnPageLoadOptions"
[value]="o.value"
[ngValue]="o.value"
[label]="o.name"
></option>
</select>
@@ -206,7 +206,7 @@
<option
*ngFor="let o of clearClipboardOptions"
[label]="o.name"
[value]="o.value"
[ngValue]="o.value"
></option>
</select>
<bit-hint class="tw-text-sm" id="clearClipboardHelp">
@@ -222,7 +222,7 @@
(change)="saveDefaultUriMatch()"
[(ngModel)]="defaultUriMatch"
>
<option *ngFor="let o of uriMatchOptions" [label]="o.name" [value]="o.value"></option>
<option *ngFor="let o of uriMatchOptions" [label]="o.name" [ngValue]="o.value"></option>
</select>
<bit-hint class="tw-text-sm" id="defaultUriMatchHelp">
{{ "defaultUriMatchDetectionDesc" | i18n }}