aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/SettingsStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-09 20:48:25 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-09 20:48:25 +0100
commit5d6164973e92fa8a3e3c18a0eb2e29494aea4f48 (patch)
tree382e6c672bbc0f7582b3b627b02111dcce902894 /src/stores/SettingsStore.js
parentAdd React 16 didCatch/ErrorBoundary component (diff)
downloadferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.tar.gz
ferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.tar.zst
ferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.zip
Fix linting issues
Diffstat (limited to 'src/stores/SettingsStore.js')
-rw-r--r--src/stores/SettingsStore.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/SettingsStore.js b/src/stores/SettingsStore.js
index e2211aec6..ee391f5d3 100644
--- a/src/stores/SettingsStore.js
+++ b/src/stores/SettingsStore.js
@@ -14,11 +14,13 @@ const debug = require('debug')('Franz:SettingsStore');
14 14
15export default class SettingsStore extends Store { 15export default class SettingsStore extends Store {
16 @observable appSettingsRequest = new CachedRequest(this.api.local, 'getAppSettings'); 16 @observable appSettingsRequest = new CachedRequest(this.api.local, 'getAppSettings');
17
17 @observable updateAppSettingsRequest = new Request(this.api.local, 'updateAppSettings'); 18 @observable updateAppSettingsRequest = new Request(this.api.local, 'updateAppSettings');
18 19
19 @observable fileSystemSettingsRequests = []; 20 @observable fileSystemSettingsRequests = [];
20 21
21 fileSystemSettingsTypes = FILE_SYSTEM_SETTINGS_TYPES; 22 fileSystemSettingsTypes = FILE_SYSTEM_SETTINGS_TYPES;
23
22 @observable _fileSystemSettingsCache = { 24 @observable _fileSystemSettingsCache = {
23 app: DEFAULT_APP_SETTINGS, 25 app: DEFAULT_APP_SETTINGS,
24 proxy: {}, 26 proxy: {},