Commit 6ad0e552 authored by dev0tion's avatar dev0tion

Small adjustment in setting the title

parent 00395574
...@@ -32,11 +32,10 @@ export class AppComponent implements OnInit { ...@@ -32,11 +32,10 @@ export class AppComponent implements OnInit {
} }
private setTitle() { private setTitle() {
let newTitle;
let applicationName = "Breeze Wallet"; let applicationName = "Breeze Wallet";
let applicationVersion = remote.app.getVersion(); let applicationVersion = remote.app.getVersion();
let releaseCycle = "alpha"; let releaseCycle = "alpha";
newTitle = applicationName + " v" + applicationVersion + " " + releaseCycle; let newTitle = applicationName + " v" + applicationVersion + " " + releaseCycle;
this.titleService.setTitle(newTitle); this.titleService.setTitle(newTitle);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment