mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
[PM-8280] email forwarders (#11563)
* forwarder lookup and generation support * localize algorithm names and descriptions in the credential generator service * add encryption support to UserStateSubject * move generic rx utilities to common * move icon button labels to generator configurations
This commit is contained in:
@@ -63,7 +63,7 @@ function getConstraint<Key extends keyof AnyConstraint>(
|
||||
) {
|
||||
if (policy && key in policy) {
|
||||
return policy[key] ?? config[key];
|
||||
} else if (key in config) {
|
||||
} else if (config && key in config) {
|
||||
return config[key];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user