mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 14:43:08 +03:00
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:
parent
b47667d8af
commit
66f1e57d81
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user