aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-06-19 13:54:06 +0530
committerLibravatar GitHub <noreply@github.com>2022-06-19 08:24:06 +0000
commit8599af64bc5893ea8e74367dfc9b6d9d6f54c428 (patch)
treefd0dbe82c4fce58b15b002ba03fcd16e05ed7925 /src/stores
parentAdd manual trigger for GH workflow to publsih homebrew tap [skip ci] (diff)
downloadferdium-app-8599af64bc5893ea8e74367dfc9b6d9d6f54c428.tar.gz
ferdium-app-8599af64bc5893ea8e74367dfc9b6d9d6f54c428.tar.zst
ferdium-app-8599af64bc5893ea8e74367dfc9b6d9d6f54c428.zip
Add ability to enable the progressbar for each service (#301)
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.js1
-rw-r--r--src/stores/ServicesStore.js1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index a9c92fe87..2d85b9ffe 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -295,6 +295,7 @@ export default class AppStore extends Store {
295 isHibernating: service.isHibernating, 295 isHibernating: service.isHibernating,
296 hasCrashed: service.hasCrashed, 296 hasCrashed: service.hasCrashed,
297 isDarkModeEnabled: service.isDarkModeEnabled, 297 isDarkModeEnabled: service.isDarkModeEnabled,
298 isProgressbarEnabled: service.isProgressbarEnabled,
298 })), 299 })),
299 messages: this.stores.globalError.messages, 300 messages: this.stores.globalError.messages,
300 workspaces: this.stores.workspaces.workspaces.map(workspace => ({ 301 workspaces: this.stores.workspaces.workspaces.map(workspace => ({
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 6b1ceb51f..999b48d92 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -414,6 +414,7 @@ export default class ServicesStore extends Store {
414 isMuted: DEFAULT_SERVICE_SETTINGS.isMuted, 414 isMuted: DEFAULT_SERVICE_SETTINGS.isMuted,
415 customIcon: DEFAULT_SERVICE_SETTINGS.customIcon, 415 customIcon: DEFAULT_SERVICE_SETTINGS.customIcon,
416 isDarkModeEnabled: DEFAULT_SERVICE_SETTINGS.isDarkModeEnabled, 416 isDarkModeEnabled: DEFAULT_SERVICE_SETTINGS.isDarkModeEnabled,
417 isProgressbarEnabled: DEFAULT_SERVICE_SETTINGS.isProgressbarEnabled,
417 spellcheckerLanguage: 418 spellcheckerLanguage:
418 SPELLCHECKER_LOCALES[this.stores.settings.app.spellcheckerLanguage], 419 SPELLCHECKER_LOCALES[this.stores.settings.app.spellcheckerLanguage],
419 userAgentPref: '', 420 userAgentPref: '',