aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.ts
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-09-01 09:29:49 +0530
committerLibravatar GitHub <noreply@github.com>2021-09-01 09:29:49 +0530
commitd0bad11661cb93756891e7fafe729b7f4e415fb1 (patch)
tree80faf451477cd9ae216ff5a8f92958c4ab23065a /src/config.ts
parentbuild(deps): bump tar from 4.4.15 to 4.4.18 (#1852) (diff)
downloadferdium-app-d0bad11661cb93756891e7fafe729b7f4e415fb1.tar.gz
ferdium-app-d0bad11661cb93756891e7fafe729b7f4e415fb1.tar.zst
ferdium-app-d0bad11661cb93756891e7fafe729b7f4e415fb1.zip
Fix issue with workspace feature - fixes #1682 (#1854)
* fix issue with workspace feature not being turned on, and then randomly turning on somehow. * when deleting the active workspace, auto-select the default workspace. * consolidated the toggling of features into a single place in the config file. Co-authored-by: Sadetdin EYILI <sadetdin.eyili@ekino.com> Signed-off-by: Vijay A <avijayr@protonmail.com>
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/config.ts b/src/config.ts
index 0647b8f52..835d130da 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -134,10 +134,11 @@ export const ICON_SIZES = {
134export const iconSizeBias = 20; 134export const iconSizeBias = 20;
135 135
136export const DEFAULT_FEATURES_CONFIG = { 136export const DEFAULT_FEATURES_CONFIG = {
137 isServiceProxyEnabled: false, 137 isServiceProxyEnabled: true,
138 isAnnouncementsEnabled: true, 138 isAnnouncementsEnabled: true,
139 isWorkspaceEnabled: false, 139 isWorkspaceEnabled: true,
140 isTodosEnabled: true, 140 isTodosEnabled: true,
141 isSettingsWSEnabled: false,
141}; 142};
142 143
143export const DEFAULT_WINDOW_OPTIONS = { 144export const DEFAULT_WINDOW_OPTIONS = {