[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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

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 }}