From 0ffc6e4a1a1122e5bf218596bc8619654c00b263 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 26 Jan 2018 11:02:35 -0500 Subject: [PATCH] show attachments if premium or org item --- src/App/Pages/Vault/VaultViewCipherPage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Pages/Vault/VaultViewCipherPage.cs b/src/App/Pages/Vault/VaultViewCipherPage.cs index 93cc851e9..ce9e68c71 100644 --- a/src/App/Pages/Vault/VaultViewCipherPage.cs +++ b/src/App/Pages/Vault/VaultViewCipherPage.cs @@ -314,7 +314,7 @@ namespace Bit.App.Pages { Table.Root.Remove(AttachmentsSection); } - if(Model.ShowAttachments && _tokenService.TokenPremium) + if(Model.ShowAttachments && (_tokenService.TokenPremium || cipher.OrganizationId != null)) { AttachmentsSection = new TableSection(AppResources.Attachments); AttachmentCells = new List();