diff --git a/frontend/src/stores/appearance.ts b/frontend/src/stores/appearance.ts index 2093f300..ed368a7d 100644 --- a/frontend/src/stores/appearance.ts +++ b/frontend/src/stores/appearance.ts @@ -315,7 +315,7 @@ const setLinkIcon = (linkWeb?: string) => { if (linkWeb) { link['href'] = baseUrl + linkWeb } else { - link['href'] = '/LOGO-fold.svg' + link['href'] = `${location.pathname}LOGO-fold.svg` } } } diff --git a/frontend/src/views/system/appearance/LoginPreview.vue b/frontend/src/views/system/appearance/LoginPreview.vue index 8e9642c2..1c53312c 100644 --- a/frontend/src/views/system/appearance/LoginPreview.vue +++ b/frontend/src/views/system/appearance/LoginPreview.vue @@ -129,7 +129,7 @@ const pageWeb = computed(() => { return !props.web ? props.isBlue ? logoHeader - : '/LOGO-fold.svg' + : `${location.pathname}LOGO-fold.svg` : props.web.startsWith('blob') ? props.web : baseUrl + props.web