From 94deaab3cd0912ff1a585bee174a096a84c68384 Mon Sep 17 00:00:00 2001 From: Yassine Doghri Date: Tue, 30 Jul 2024 09:40:50 +0000 Subject: [PATCH] fix(icons): set correct names for lock and lock-unlock icons in premium banner --- themes/cp_app/podcast/_partials/premium_banner.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/themes/cp_app/podcast/_partials/premium_banner.php b/themes/cp_app/podcast/_partials/premium_banner.php index 932fa34b..9e893018 100644 --- a/themes/cp_app/podcast/_partials/premium_banner.php +++ b/themes/cp_app/podcast/_partials/premium_banner.php @@ -4,8 +4,10 @@ if ($podcast->is_premium): ?> isUnlocked($podcast->handle); - $shownIcon = $isUnlocked ? 'lock-unlock' : 'lock'; - $hiddenIcon = $isUnlocked ? 'lock' : 'lock-unlock'; + // @icon('lock-unlock-fill') + // @icon('lock-fill') + $shownIcon = $isUnlocked ? 'lock-unlock-fill' : 'lock-fill'; + $hiddenIcon = $isUnlocked ? 'lock-fill' : 'lock-unlock-fill'; ?>