From 190b964d072badee6a78e11bfcd286c4bc652817 Mon Sep 17 00:00:00 2001 From: Kulbhushan Kaushik Date: Wed, 11 Jan 2023 12:35:59 -0500 Subject: [PATCH] commit --- src/common-components/site-footer/site-footer.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common-components/site-footer/site-footer.vue b/src/common-components/site-footer/site-footer.vue index 50b54635..d502967d 100644 --- a/src/common-components/site-footer/site-footer.vue +++ b/src/common-components/site-footer/site-footer.vue @@ -38,6 +38,7 @@ import textLink from "@/ux-components/text-link/text-link"; import buttonMain from "@/ux-components/button-main/button-main"; import { queryStrings } from "@/constants/query-strings"; +import { issPageValues } from "@/router/router-constants/issPage-values" export default { name: "siteFooter", @@ -58,7 +59,7 @@ export default { }; }, mounted() { - this.paddingHeight = queryStrings.ISS_PAGE == "welcome-page" ? this.getFooterInfoBoxHeight() + 89 : this.getFooterInfoBoxHeight() + 24; + this.paddingHeight = queryStrings.ISS_PAGE.toLowerCase() == issPageValues.WELCOME_PAGE ? this.getFooterInfoBoxHeight() + 89 : this.getFooterInfoBoxHeight() + 24; this.$nextTick(() => { window.addEventListener("resize", this.onResize); });