Skip to content

Commit 7429c65

Browse files
committed
fix : update config and login pages to reference logo.svg from assets
1 parent 1165807 commit 7429c65

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pages/auth/login.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const handleLogin = async () => {
5959
</div>
6060

6161
<div class="max-w-sm w-full p-4 sm:p-7">
62-
<img src="https://rustfs.com/rustfs.logo.svg" class="max-w-28" alt="" />
62+
<img src="~/assets/logo.svg" class="max-w-28" alt="" />
6363
<div class="py-6">
6464
<h1 class="block text-2xl font-bold text-gray-800 dark:text-white">{{ t('Login to RustFS Console') }}</h1>
6565
<p class="mt-2 text-sm text-gray-600 dark:text-neutral-400">

pages/config.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ onMounted(() => {
104104
class="w-full lg:w-1/2 flex flex-col justify-center items-center bg-white dark:bg-neutral-900 dark:border-neutral-700 relative"
105105
>
106106
<div class="max-w-sm w-full p-4 sm:p-7">
107-
<img src="https://rustfs.com/rustfs.logo.svg" class="max-w-28" alt="" />
107+
<img src="~/assets/logo.svg" class="max-w-28" alt="" />
108108
<div class="py-6">
109109
<h1 class="block text-2xl font-bold text-gray-800 dark:text-white">
110110
{{ t('Server Configuration') }}

0 commit comments

Comments
 (0)