From 216f5c22136574a7d4352b692fd2583a0cf142f1 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Fri, 7 Dec 2018 14:50:16 +0100 Subject: [PATCH] . --- terminus-core/src/services/homeBase.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminus-core/src/services/homeBase.service.ts b/terminus-core/src/services/homeBase.service.ts index 673f8fd3..24334c67 100644 --- a/terminus-core/src/services/homeBase.service.ts +++ b/terminus-core/src/services/homeBase.service.ts @@ -33,7 +33,7 @@ export class HomeBaseService { linux: 'OS: Linux', }[os.platform()] let plugins = (window as any).installedPlugins.filter(x => !x.isBuiltin).map(x => x.name) - body += `Plugins: ${plugins.join(', ')}\n\n` + body += `Plugins: ${plugins.join(', ') || 'none'}\n\n` this.electron.shell.openExternal(`https://github.com/eugeny/terminus/issues/new?body=${encodeURIComponent(body)}&labels=${label}`) }