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 += '
';
}