From 04f296cc734cd99707e9cb0060dbc9a4dee5e8c5 Mon Sep 17 00:00:00 2001 From: Deluan Date: Thu, 19 Dec 2024 16:59:26 -0500 Subject: [PATCH] fix(ui): show last.fm api-key missing in a `FormHelperText` Signed-off-by: Deluan --- ui/src/personal/LastfmScrobbleToggle.jsx | 44 ++++++++++-------------- 1 file changed, 19 insertions(+), 25 deletions(-) diff --git a/ui/src/personal/LastfmScrobbleToggle.jsx b/ui/src/personal/LastfmScrobbleToggle.jsx index a3c6793ea..67018d2bb 100644 --- a/ui/src/personal/LastfmScrobbleToggle.jsx +++ b/ui/src/personal/LastfmScrobbleToggle.jsx @@ -3,6 +3,7 @@ import { useNotify, useTranslate } from 'react-admin' import { FormControl, FormControlLabel, + FormHelperText, LinearProgress, Switch, Tooltip, @@ -102,32 +103,20 @@ export const LastfmScrobbleToggle = (props) => { return ( - {apiKey ? ( - - } - label={ - {translate('menu.personal.options.lastfmScrobbling')} - } - /> - ) : ( - - } - label={ - {translate('menu.personal.options.lastfmScrobbling')} - } + - - )} + } + label={ + {translate('menu.personal.options.lastfmScrobbling')} + } + /> {checkingLink && ( { apiKey={apiKey} /> )} + {!apiKey && ( + + {translate('menu.personal.options.lastfmNotConfigured')} + + )} ) }