From dc2f4953ebd70d1a7e08552a0cef881147ae71b1 Mon Sep 17 00:00:00 2001 From: jelveh Date: Sat, 6 Dec 2025 21:41:18 -0800 Subject: [PATCH] Fix recent app title display logic in TabHome (jesus take the wheel!) --- src/gui/src/UI/Dashboard/TabHome.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gui/src/UI/Dashboard/TabHome.js b/src/gui/src/UI/Dashboard/TabHome.js index 6cd33a03..c488d2b8 100644 --- a/src/gui/src/UI/Dashboard/TabHome.js +++ b/src/gui/src/UI/Dashboard/TabHome.js @@ -36,10 +36,11 @@ function buildRecentAppsHTML () { h += `
`; h += ``; - // if title is the same as name, then show the hostname of index_url - if ( app_info.name === app_info.title === app_info.uuid && app_info.index_url ) { + // if title, name and uuid are the same and index_url is set, then show the hostname of index_url + if ( app_info.name === app_info.title && app_info.name === app_info.uuid && app_info.index_url ) { app_info.title = new URL(app_info.index_url).hostname; } + h += `${html_encode(app_info.title)}`; h += '
'; }