diff --git a/apps/desktop/src/app/vault/vault.component.ts b/apps/desktop/src/app/vault/vault.component.ts index 930e557a890..530e4528820 100644 --- a/apps/desktop/src/app/vault/vault.component.ts +++ b/apps/desktop/src/app/vault/vault.component.ts @@ -274,13 +274,15 @@ export class VaultComponent implements OnInit, OnDestroy { this.editCipher(cipher); }), }); - menu.push({ - label: this.i18nService.t("clone"), - click: () => - this.functionWithChangeDetection(() => { - this.cloneCipher(cipher); - }), - }); + if (!cipher.organizationId) { + menu.push({ + label: this.i18nService.t("clone"), + click: () => + this.functionWithChangeDetection(() => { + this.cloneCipher(cipher); + }), + }); + } } switch (cipher.type) {