aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-16 13:35:01 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-16 13:35:01 +0100
commitdd60aad8a479f02eab6d26ed3e26549e5f753378 (patch)
tree02d477c636c8bcd071d9d685e637ab37f06f4965 /src/stores
parentAdded missing dependency (diff)
parentTest linux apt install (diff)
downloadferdium-app-dd60aad8a479f02eab6d26ed3e26549e5f753378.tar.gz
ferdium-app-dd60aad8a479f02eab6d26ed3e26549e5f753378.tar.zst
ferdium-app-dd60aad8a479f02eab6d26ed3e26549e5f753378.zip
Merge branch 'develop' into feature/dark-theme
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/ServicesStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index ccb85421a..4c2992c70 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -93,7 +93,7 @@ export default class ServicesStore extends Store {
93 return this.stores.settings.all.app.showDisabledServices ? this.all : this.enabled; 93 return this.stores.settings.all.app.showDisabledServices ? this.all : this.enabled;
94 } 94 }
95 95
96 // This is just used to avoid unnecessary rerendering of resource-heavy webviews 96 // This is just used to avoid unnecessary rerendering of resource-heavy webviews
97 @computed get allDisplayedUnordered() { 97 @computed get allDisplayedUnordered() {
98 const services = this.allServicesRequest.execute().result || []; 98 const services = this.allServicesRequest.execute().result || [];
99 return this.stores.settings.all.app.showDisabledServices ? services : services.filter(service => service.isEnabled); 99 return this.stores.settings.all.app.showDisabledServices ? services : services.filter(service => service.isEnabled);