From 81abae875f1e5b7f4c1d75fea2374f4146303bf1 Mon Sep 17 00:00:00 2001 From: saltrafael <76502841+saltrafael@users.noreply.github.com> Date: Thu, 30 Sep 2021 15:05:39 -0300 Subject: [PATCH] Fix plant icon (#7195) * Fix plant icon * Also change phone icon name --- ui/component/common/icon-custom.jsx | 15 +++++++++------ ui/constants/icons.js | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/ui/component/common/icon-custom.jsx b/ui/component/common/icon-custom.jsx index 162a80cf8..dddd89857 100644 --- a/ui/component/common/icon-custom.jsx +++ b/ui/component/common/icon-custom.jsx @@ -2469,7 +2469,7 @@ export const icons = { ), - [ICONS.PRIMARY_CONTENT]: buildIcon( + [ICONS.HOLD_PHONE]: buildIcon( @@ -2482,11 +2482,14 @@ export const icons = { ), [ICONS.LIFE]: buildIcon( - - - - - + + + + + + + + ), [ICONS.ARTISTS]: buildIcon( diff --git a/ui/constants/icons.js b/ui/constants/icons.js index 519ba168f..f6fdc80b9 100644 --- a/ui/constants/icons.js +++ b/ui/constants/icons.js @@ -174,7 +174,7 @@ export const BADGE_STREAMER = 'BadgeStreamer'; export const REPLAY = 'Replay'; export const REPEAT = 'Repeat'; export const SHUFFLE = 'Shuffle'; -export const PRIMARY_CONTENT = 'Primary Content'; +export const HOLD_PHONE = 'HOLD_PHONE'; export const LIFE = 'Life'; export const ARTISTS = 'Artists'; export const MYSTERIES = 'Mysteries';