Fixed action dropdown not showing for free tier card

refs https://github.com/TryGhost/Team/issues/1252

- we only want to hide the archive option for free tier, as that's only relevant for paid tiers.
This commit is contained in:
Rishabh 2022-02-01 17:26:18 +05:30
parent b47667d8af
commit 66f1e57d81

View File

@ -64,7 +64,6 @@
<span class="hidden">Actions</span>
</span>
</GhDropdownButton>
{{#if (eq this.product.type "paid" )}}
<GhDropdown
@name="tiers-actions-menu-{{this.product.name}}"
@tagName="ul"
@ -75,11 +74,12 @@
<span>Edit</span>
</button>
</li>
<li>
<Settings::Members::ArchiveTier @product={{this.product}} />
</li>
{{#if (eq this.product.type "paid" )}}
<li>
<Settings::Members::ArchiveTier @product={{this.product}} />
</li>
{{/if}}
</GhDropdown>
{{/if}}
</span>
</div>
</div>