aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-15 14:40:10 +0100
committerLibravatar GitHub <noreply@github.com>2017-12-15 14:40:10 +0100
commita8917ee619c972ea587446e4dde2ae3cacafb3a7 (patch)
tree3f852395fafab2897f78303c77432479b1ab99a2 /src/stores
parentremove unecessary console logs (diff)
parentfix(Spell checker): Fixed issues with spell checker (diff)
downloadferdium-app-a8917ee619c972ea587446e4dde2ae3cacafb3a7.tar.gz
ferdium-app-a8917ee619c972ea587446e4dde2ae3cacafb3a7.tar.zst
ferdium-app-a8917ee619c972ea587446e4dde2ae3cacafb3a7.zip
Merge pull request #458 from meetfranz/feature/spellchecker-improvements
[PR] spellchecker improvements
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/SettingsStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/SettingsStore.js b/src/stores/SettingsStore.js
index 33473f16d..da99a720f 100644
--- a/src/stores/SettingsStore.js
+++ b/src/stores/SettingsStore.js
@@ -26,7 +26,7 @@ export default class SettingsStore extends Store {
26 } 26 }
27 27
28 @computed get all() { 28 @computed get all() {
29 return this.allSettingsRequest.result || new SettingsModel(); 29 return new SettingsModel(this.allSettingsRequest.result);
30 } 30 }
31 31
32 @action async _update({ settings }) { 32 @action async _update({ settings }) {