mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
remove user match strategy on the web (#11385)
This commit is contained in:
@@ -83,6 +83,11 @@ export class UriOptionComponent implements ControlValueAccessor {
|
||||
*/
|
||||
@Input({ required: true })
|
||||
set defaultMatchDetection(value: UriMatchStrategySetting) {
|
||||
// The default selection has a value of `null` avoid showing "Default (Default)"
|
||||
if (!value) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.uriMatchOptions[0].label = this.i18nService.t(
|
||||
"defaultLabel",
|
||||
this.uriMatchOptions.find((o) => o.value === value)?.label,
|
||||
|
||||
Reference in New Issue
Block a user