From 9121d879658400313c10fc28e025443256f6713b Mon Sep 17 00:00:00 2001 From: TwiN Date: Thu, 27 Nov 2025 20:55:30 -0500 Subject: [PATCH] fix(ui): Typo in conditional check if dashboard subheading is not set and running in dev mode --- web/app/src/views/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/src/views/Home.vue b/web/app/src/views/Home.vue index f1743161..7091b2bc 100644 --- a/web/app/src/views/Home.vue +++ b/web/app/src/views/Home.vue @@ -537,7 +537,7 @@ const dashboardHeading = computed(() => { }) const dashboardSubheading = computed(() => { - return window.config && window.config.dashboardSubheading && window.config.dashboardSubheading !== '{{ .UI.dashboardSubheading }}' ? window.config.dashboardSubheading : "Monitor the health of your endpoints in real-time" + return window.config && window.config.dashboardSubheading && window.config.dashboardSubheading !== '{{ .UI.DashboardSubheading }}' ? window.config.dashboardSubheading : "Monitor the health of your endpoints in real-time" }) onMounted(() => {