aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-10 15:05:52 +0100
committerLibravatar GitHub <noreply@github.com>2017-11-10 15:05:52 +0100
commit4f5dd248e23477a5a2ae55c63918b7308ffce99d (patch)
tree9606844c390deb0ba6647d70fb60e09318a6a900 /src/config.js
parentMerge branch 'develop' of github.com:meetfranz/franz into develop (diff)
parentget default local from default app config (diff)
downloadferdium-app-4f5dd248e23477a5a2ae55c63918b7308ffce99d.tar.gz
ferdium-app-4f5dd248e23477a5a2ae55c63918b7308ffce99d.tar.zst
ferdium-app-4f5dd248e23477a5a2ae55c63918b7308ffce99d.zip
Merge pull request #248 from meetfranz/feature/192-display-disabled-services
Add option to show disabled services in tab bar
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.js b/src/config.js
index 0a4856ece..868c0cdf1 100644
--- a/src/config.js
+++ b/src/config.js
@@ -10,6 +10,7 @@ export const DEFAULT_APP_SETTINGS = {
10 runInBackground: false, 10 runInBackground: false,
11 enableSystemTray: true, 11 enableSystemTray: true,
12 minimizeToSystemTray: false, 12 minimizeToSystemTray: false,
13 locale: 'en-us', // TODO: Replace with proper solution once translations are in 13 showDisabledServices: true,
14 locale: 'en-US',
14 beta: false, 15 beta: false,
15}; 16};