mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-14 17:26:26 +01:00
♻️ Fix default img paths
This commit is contained in:
@@ -33,7 +33,7 @@ export const BackgroundChanger = () => {
|
||||
return (
|
||||
<TextInput
|
||||
label={t('background.label')}
|
||||
placeholder="/imgs/background.png"
|
||||
placeholder="/imgs/backgrounds/background.png"
|
||||
value={backgroundImageUrl}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
|
||||
@@ -9,7 +9,7 @@ export const FaviconChanger = () => {
|
||||
const updateConfig = useConfigStore((x) => x.updateConfig);
|
||||
const { config, name: configName } = useConfigContext();
|
||||
const [faviconUrl, setFaviconUrl] = useState(
|
||||
config?.settings.customization.faviconUrl ?? '/imgs/favicon/favicon-squared.png'
|
||||
config?.settings.customization.faviconUrl ?? '/imgs/favicon/favicon.svg'
|
||||
);
|
||||
|
||||
if (!configName) return null;
|
||||
|
||||
Reference in New Issue
Block a user