aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/app
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-08-12 14:11:00 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-08-12 14:11:00 +0530
commitf00ac8602f1b88075902dab5ecbfddd0b3bd7acd (patch)
tree8ea62b2371c9f01abbf961965cde53b6b8fe808c /src/internal-server/app
parentfix: fixing issue with packaged app throwing an error about missing 'tslib' (... (diff)
downloadferdium-app-f00ac8602f1b88075902dab5ecbfddd0b3bd7acd.tar.gz
ferdium-app-f00ac8602f1b88075902dab5ecbfddd0b3bd7acd.tar.zst
ferdium-app-f00ac8602f1b88075902dab5ecbfddd0b3bd7acd.zip
fix: Fixed the sidebar context menu for toggling dark mode.
Diffstat (limited to 'src/internal-server/app')
-rw-r--r--src/internal-server/app/Controllers/Http/ServiceController.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/internal-server/app/Controllers/Http/ServiceController.js b/src/internal-server/app/Controllers/Http/ServiceController.js
index d98ba146e..c76a287f7 100644
--- a/src/internal-server/app/Controllers/Http/ServiceController.js
+++ b/src/internal-server/app/Controllers/Http/ServiceController.js
@@ -52,7 +52,7 @@ class ServiceController {
52 isNotificationEnabled: true, 52 isNotificationEnabled: true,
53 isBadgeEnabled: true, 53 isBadgeEnabled: true,
54 isMuted: false, 54 isMuted: false,
55 isDarkModeEnabled: false, 55 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work.
56 spellcheckerLanguage: '', 56 spellcheckerLanguage: '',
57 order: 1, 57 order: 1,
58 customRecipe: false, 58 customRecipe: false,
@@ -79,7 +79,7 @@ class ServiceController {
79 customRecipe: false, 79 customRecipe: false,
80 hasCustomIcon: false, 80 hasCustomIcon: false,
81 isBadgeEnabled: true, 81 isBadgeEnabled: true,
82 isDarkModeEnabled: false, 82 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work.
83 isEnabled: true, 83 isEnabled: true,
84 isMuted: false, 84 isMuted: false,
85 isNotificationEnabled: true, 85 isNotificationEnabled: true,
@@ -253,7 +253,7 @@ class ServiceController {
253 customRecipe: false, 253 customRecipe: false,
254 hasCustomIcon: false, 254 hasCustomIcon: false,
255 isBadgeEnabled: true, 255 isBadgeEnabled: true,
256 isDarkModeEnabled: false, 256 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work.
257 isEnabled: true, 257 isEnabled: true,
258 isMuted: false, 258 isMuted: false,
259 isNotificationEnabled: true, 259 isNotificationEnabled: true,