Merge branch 'main' into autofill/pm-8833-implement-on-page-autofill-menu-for-password-generation

This commit is contained in:
Cesar Gonzalez 2024-09-26 04:22:20 -05:00
commit 0a1d727884
No known key found for this signature in database
GPG Key ID: 3381A5457F8CCECF
3 changed files with 4 additions and 4 deletions

View File

@ -382,7 +382,7 @@
</label>
</div>
<small id="enableBrowserIntegrationHelp" class="help-block">{{
"enableBrowserIntegrationDesc" | i18n
"enableBrowserIntegrationDesc1" | i18n
}}</small>
</div>
<div class="form-group">

View File

@ -1775,8 +1775,8 @@
"enableBrowserIntegration": {
"message": "Allow browser integration"
},
"enableBrowserIntegrationDesc": {
"message": "Used for biometrics in browser."
"enableBrowserIntegrationDesc1": {
"message": "Used to allow biometric unlock in browsers that are not Safari."
},
"enableDuckDuckGoBrowserIntegration": {
"message": "Allow DuckDuckGo browser integration"

View File

@ -72,7 +72,7 @@ export class CollectionsComponent implements OnInit {
if (this.organization.canEditAllCiphers) {
return !!(c as any).checked;
} else {
return !!(c as any).checked && c.readOnly == null;
return !!(c as any).checked && !c.readOnly;
}
})
.map((c) => c.id);