From 1014c1f4d1028c8506458df9f8e3c06ebbef140b 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 e787ad4a..19301881 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'; ?>