summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2021-08-26 22:06:49 +0300
committerDerick Montague <derick.montague@ibm.com>2021-09-03 01:08:05 +0300
commit932aff93a96fff5fb2d1e1dc264f944cc78b3f83 (patch)
tree6de440eb3f9ced0f5774f9e03e3c119a2f651c42 /src/components
parent1908ac90fb2ec4849a71678543e0ed11af014256 (diff)
downloadwebui-vue-932aff93a96fff5fb2d1e1dc264f944cc78b3f83.tar.xz
Update login page layout
This update will: - Change the positioning of the form to be on the left - Add the built on OpenBMC logo to the bottom right corner of the screen - Add the ability to include a GUI custom name using a .env variable. If the variable is not present, the login page will not include the <h1> section heading element. - Remove the word "logo" from the alt attribute for the company logo image used in the application header and on the login page. Github story: https://github.com/openbmc/webui-vue/issues/63 Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: I83ac5aecff0b3858c3ab5f38ab1aaa603d59acf1
Diffstat (limited to 'src/components')
-rw-r--r--src/components/AppHeader/AppHeader.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/AppHeader/AppHeader.vue b/src/components/AppHeader/AppHeader.vue
index 4e806fb9..7211a598 100644
--- a/src/components/AppHeader/AppHeader.vue
+++ b/src/components/AppHeader/AppHeader.vue
@@ -130,7 +130,7 @@ export default {
data() {
return {
isNavigationOpen: false,
- altLogo: `${process.env.VUE_APP_COMPANY_NAME} logo`,
+ altLogo: process.env.VUE_APP_COMPANY_NAME || 'Built on OpenBMC',
};
},
computed: {