aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-20 13:35:24 +0100
committerLibravatar GitHub <noreply@github.com>2017-11-20 13:35:24 +0100
commitd8fe16301a3f0ce7fbfb1e771099c8e1a1468750 (patch)
treeb6f2e4a58b58bb8ab7d1469b22799dce57ef9298 /src/stores/ServicesStore.js
parentfix(Windows): Fix notifications on Windows 10 (diff)
parentPrevent sorting services by clicking in the tab bar background (diff)
downloadferdium-app-d8fe16301a3f0ce7fbfb1e771099c8e1a1468750.tar.gz
ferdium-app-d8fe16301a3f0ce7fbfb1e771099c8e1a1468750.tar.zst
ferdium-app-d8fe16301a3f0ce7fbfb1e771099c8e1a1468750.zip
fix(Sidebar): Fix sidebar tab sorting (@josescgar)
Closes #283
Diffstat (limited to 'src/stores/ServicesStore.js')
-rw-r--r--src/stores/ServicesStore.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 9af5d81da..22c376c06 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -470,8 +470,10 @@ export default class ServicesStore extends Store {
470 const service = this.active; 470 const service = this.active;
471 471
472 if (service) { 472 if (service) {
473 this.stores.settings.updateSettingsRequest.execute({ 473 this.actions.settings.update({
474 activeService: service.id, 474 settings: {
475 activeService: service.id,
476 },
475 }); 477 });
476 } 478 }
477 } 479 }