summaryrefslogtreecommitdiff
path: root/src/layouts
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-07-27 17:46:29 +0300
committerGunnar Mills <gmills@us.ibm.com>2020-07-28 20:45:36 +0300
commit254b960f4e1d8e0713da3a05152eab2e07a2eb26 (patch)
tree309563660309f2ecfc73327f7a88a6b4daeb003b /src/layouts
parent33a8c5369e0253a93dba2e70647bda1c7697b73b (diff)
downloadwebui-vue-254b960f4e1d8e0713da3a05152eab2e07a2eb26.tar.xz
Fix login layout logo alt text value
Update Login page logo alt text to use VUE_APP_COMPANY_NAME. VUE_APP_COMPANY_NAME is already being used for the logo in the application header. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I4ab901a705052cd9e7abac4e8db52532c1d18ef5
Diffstat (limited to 'src/layouts')
-rw-r--r--src/layouts/LoginLayout.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layouts/LoginLayout.vue b/src/layouts/LoginLayout.vue
index 674f4eb2..ab6fbe20 100644
--- a/src/layouts/LoginLayout.vue
+++ b/src/layouts/LoginLayout.vue
@@ -26,7 +26,7 @@ export default {
name: 'LoginLayout',
data() {
return {
- altLogo: `${process.env.VUE_APP_META} logo`
+ altLogo: `${process.env.VUE_APP_COMPANY_NAME} logo`
};
}
};