mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
[PM-10124] Browser refresh update for autofill settings component returning invalid data type (#10289)
This commit is contained in:
@@ -159,7 +159,7 @@
|
|||||||
>
|
>
|
||||||
<option
|
<option
|
||||||
*ngFor="let o of autofillOnPageLoadOptions"
|
*ngFor="let o of autofillOnPageLoadOptions"
|
||||||
[value]="o.value"
|
[ngValue]="o.value"
|
||||||
[label]="o.name"
|
[label]="o.name"
|
||||||
></option>
|
></option>
|
||||||
</select>
|
</select>
|
||||||
@@ -206,7 +206,7 @@
|
|||||||
<option
|
<option
|
||||||
*ngFor="let o of clearClipboardOptions"
|
*ngFor="let o of clearClipboardOptions"
|
||||||
[label]="o.name"
|
[label]="o.name"
|
||||||
[value]="o.value"
|
[ngValue]="o.value"
|
||||||
></option>
|
></option>
|
||||||
</select>
|
</select>
|
||||||
<bit-hint class="tw-text-sm" id="clearClipboardHelp">
|
<bit-hint class="tw-text-sm" id="clearClipboardHelp">
|
||||||
@@ -222,7 +222,7 @@
|
|||||||
(change)="saveDefaultUriMatch()"
|
(change)="saveDefaultUriMatch()"
|
||||||
[(ngModel)]="defaultUriMatch"
|
[(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>
|
</select>
|
||||||
<bit-hint class="tw-text-sm" id="defaultUriMatchHelp">
|
<bit-hint class="tw-text-sm" id="defaultUriMatchHelp">
|
||||||
{{ "defaultUriMatchDetectionDesc" | i18n }}
|
{{ "defaultUriMatchDetectionDesc" | i18n }}
|
||||||
|
|||||||
Reference in New Issue
Block a user