aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Gilles Marec <gilles@monkeysas.com>2020-03-10 21:05:16 +0100
committerLibravatar Gilles Marec <gilles@monkeysas.com>2020-03-10 21:05:16 +0100
commit8a6fd14c0d7ab8dd41439a009849def878d7dc62 (patch)
tree0079c1d24b215fef3b08f2f2b133d16acb848649 /src
parentMerge pull request #443 from getferdi/doc/start-dev-app (diff)
downloadferdium-app-8a6fd14c0d7ab8dd41439a009849def878d7dc62.tar.gz
ferdium-app-8a6fd14c0d7ab8dd41439a009849def878d7dc62.tar.zst
ferdium-app-8a6fd14c0d7ab8dd41439a009849def878d7dc62.zip
Reflect service name in application title
Diffstat (limited to 'src')
-rw-r--r--src/stores/ServicesStore.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 985887d2d..54befee77 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -699,6 +699,7 @@ export default class ServicesStore extends Store {
699 const service = this.active; 699 const service = this.active;
700 if (service) { 700 if (service) {
701 this.actions.service.focusService({ serviceId: service.id }); 701 this.actions.service.focusService({ serviceId: service.id });
702 document.title = `Ferdi - ${service.name}`;
702 } 703 }
703 } 704 }
704 705