From 66f1e57d81e24c84da101f9a1ec9f5854d31df8d Mon Sep 17 00:00:00 2001 From: Rishabh Date: Tue, 1 Feb 2022 17:26:18 +0530 Subject: [PATCH] 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. --- ghost/admin/app/components/gh-product-card.hbs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ghost/admin/app/components/gh-product-card.hbs b/ghost/admin/app/components/gh-product-card.hbs index 5688e789fd..a9ef3213f5 100644 --- a/ghost/admin/app/components/gh-product-card.hbs +++ b/ghost/admin/app/components/gh-product-card.hbs @@ -64,7 +64,6 @@ - {{#if (eq this.product.type "paid" )}} Edit -
  • - -
  • + {{#if (eq this.product.type "paid" )}} +
  • + +
  • + {{/if}}
    - {{/if}}