From e5feb40003bff82d3df67682e68973380f68f18e Mon Sep 17 00:00:00 2001 From: David Evans Date: Thu, 12 Mar 2026 16:47:05 +0000 Subject: [PATCH] service name --- app/config.js | 2 +- app/views/current/layouts/layout-signed-in.html | 5 +++-- app/views/current/layouts/layout.html | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/config.js b/app/config.js index f060dcd..6595336 100644 --- a/app/config.js +++ b/app/config.js @@ -2,7 +2,7 @@ module.exports = { // Service name - serviceName: 'Search and evaluate medical technologies', + serviceName: '', // Port to run nodemon on locally port: 2000, diff --git a/app/views/current/layouts/layout-signed-in.html b/app/views/current/layouts/layout-signed-in.html index 7102f2b..4b28533 100755 --- a/app/views/current/layouts/layout-signed-in.html +++ b/app/views/current/layouts/layout-signed-in.html @@ -20,13 +20,14 @@ {{ header({ logo: { - href: "/", - ariaLabel: "Search and evaluate medical technologies" + href: "/" + }, service: { text: "Search and evaluate medical technologies", href: "/" }, + account: { items: [ { diff --git a/app/views/current/layouts/layout.html b/app/views/current/layouts/layout.html index 0515885..7d04bd7 100755 --- a/app/views/current/layouts/layout.html +++ b/app/views/current/layouts/layout.html @@ -18,7 +18,7 @@ {% block header %} {{ header({ service: { - text: serviceName, + text: Search and evaluate medical technologies, href: "/" } }) }}