From 9d6cb2525fa77ae0abf085b35e2ee278e1ea7f62 Mon Sep 17 00:00:00 2001 From: Marquis Kurt Date: Thu, 21 Nov 2019 10:02:49 -0500 Subject: [PATCH] Fix hardcoded about menu entry --- public/electron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/electron.js b/public/electron.js index 012a71c..69ecaec 100644 --- a/public/electron.js +++ b/public/electron.js @@ -389,7 +389,7 @@ function createMenubar() { label: app.getName(), submenu: [ { - label: 'About Hyperspace Desktop', + label: `About ${app.getName()}`, click() { safelyGoTo("hyperspace://hyperspace/app/#/about") }