1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

Updated cipher view to have the latest value of organizationUseTotp from server response (#13223)

This commit is contained in:
SmithThe4th
2025-02-06 12:22:27 -05:00
committed by GitHub
parent 276d9b9a9b
commit 1746046f18
3 changed files with 5 additions and 2 deletions

View File

@@ -158,7 +158,7 @@ export class ItemDetailsSectionComponent implements OnInit {
get allowOwnershipChange() {
// Do not allow ownership change in edit mode and the cipher is owned by an organization
if (this.config.mode === "edit" && this.originalCipherView.organizationId != null) {
if (this.config.mode === "edit" && this.originalCipherView?.organizationId != null) {
return false;
}