aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Amine <amine@mouafik.fr>2020-03-11 07:26:54 +0100
committerLibravatar GitHub <noreply@github.com>2020-03-11 07:26:54 +0100
commit0e601dbd1cc6f98884ff8aa891efbe62f22ef27f (patch)
tree7d2165cd6bad277ac732cc9f9c1a8333c7db4cb3 /src
parentAdd gmarec as a contributor (#460) (diff)
parentReflect service name in application title (diff)
downloadferdium-app-0e601dbd1cc6f98884ff8aa891efbe62f22ef27f.tar.gz
ferdium-app-0e601dbd1cc6f98884ff8aa891efbe62f22ef27f.tar.zst
ferdium-app-0e601dbd1cc6f98884ff8aa891efbe62f22ef27f.zip
Merge pull request #458 from gmarec/develop-servicestore
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