aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-04-16 11:48:04 +0200
committerLibravatar GitHub <noreply@github.com>2019-04-16 11:48:04 +0200
commit65c6a5709a5f2acd527ade8dd01031f8dea654c9 (patch)
tree8a49a5e84333fab64dee113da0608e45fdb7ddc1 /src/stores
parentFix linting issue (diff)
parentincrease app opens to show share franz overlay (diff)
downloadferdium-app-65c6a5709a5f2acd527ade8dd01031f8dea654c9.tar.gz
ferdium-app-65c6a5709a5f2acd527ade8dd01031f8dea654c9.tar.zst
ferdium-app-65c6a5709a5f2acd527ade8dd01031f8dea654c9.zip
Merge branch 'develop' into chore/streamline-dashboard
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/ServicesStore.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index d04fdd0c5..13f929c2f 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -11,7 +11,7 @@ import Store from './lib/Store';
11import Request from './lib/Request'; 11import Request from './lib/Request';
12import CachedRequest from './lib/CachedRequest'; 12import CachedRequest from './lib/CachedRequest';
13import { matchRoute } from '../helpers/routing-helpers'; 13import { matchRoute } from '../helpers/routing-helpers';
14import { gaEvent } from '../lib/analytics'; 14import { gaEvent, statsEvent } from '../lib/analytics';
15import { workspaceStore } from '../features/workspaces'; 15import { workspaceStore } from '../features/workspaces';
16 16
17const debug = require('debug')('Franz:ServiceStore'); 17const debug = require('debug')('Franz:ServiceStore');
@@ -299,6 +299,8 @@ export default class ServicesStore extends Store {
299 }); 299 });
300 service.isActive = true; 300 service.isActive = true;
301 301
302 statsEvent('activate-service', service.recipe.id);
303
302 this._focusActiveService(); 304 this._focusActiveService();
303 } 305 }
304 306