aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/EditSettingsScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/settings/EditSettingsScreen.js')
-rw-r--r--src/containers/settings/EditSettingsScreen.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/containers/settings/EditSettingsScreen.js b/src/containers/settings/EditSettingsScreen.js
index 4c99de9da..74ec1909e 100644
--- a/src/containers/settings/EditSettingsScreen.js
+++ b/src/containers/settings/EditSettingsScreen.js
@@ -162,9 +162,9 @@ const messages = defineMessages({
162 id: 'settings.app.form.beta', 162 id: 'settings.app.form.beta',
163 defaultMessage: '!!!Include beta versions', 163 defaultMessage: '!!!Include beta versions',
164 }, 164 },
165 noUpdates: { 165 automaticUpdates: {
166 id: 'settings.app.form.noUpdates', 166 id: 'settings.app.form.automaticUpdates',
167 defaultMessage: '!!!Disable updates', 167 defaultMessage: '!!!Enable updates',
168 }, 168 },
169 enableTodos: { 169 enableTodos: {
170 id: 'settings.app.form.enableTodos', 170 id: 'settings.app.form.enableTodos',
@@ -231,14 +231,14 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e
231 enableSpellchecking: settingsData.enableSpellchecking, 231 enableSpellchecking: settingsData.enableSpellchecking,
232 spellcheckerLanguage: settingsData.spellcheckerLanguage, 232 spellcheckerLanguage: settingsData.spellcheckerLanguage,
233 beta: settingsData.beta, // we need this info in the main process as well 233 beta: settingsData.beta, // we need this info in the main process as well
234 noUpdates: settingsData.noUpdates, // we need this info in the main process as well 234 automaticUpdates: settingsData.automaticUpdates, // we need this info in the main process as well
235 locale: settingsData.locale, // we need this info in the main process as well 235 locale: settingsData.locale, // we need this info in the main process as well
236 }, 236 },
237 }); 237 });
238 238
239 user.update({ 239 user.update({
240 userData: { 240 userData: {
241 noUpdates: settingsData.noUpdates, 241 automaticUpdates: settingsData.automaticUpdates,
242 beta: settingsData.beta, 242 beta: settingsData.beta,
243 locale: settingsData.locale, 243 locale: settingsData.locale,
244 }, 244 },
@@ -491,10 +491,10 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e
491 value: user.data.beta, 491 value: user.data.beta,
492 default: DEFAULT_APP_SETTINGS.beta, 492 default: DEFAULT_APP_SETTINGS.beta,
493 }, 493 },
494 noUpdates: { 494 automaticUpdates: {
495 label: intl.formatMessage(messages.noUpdates), 495 label: intl.formatMessage(messages.automaticUpdates),
496 value: settings.app.noUpdates, 496 value: settings.app.automaticUpdates,
497 default: DEFAULT_APP_SETTINGS.noUpdates, 497 default: DEFAULT_APP_SETTINGS.automaticUpdates,
498 }, 498 },
499 }, 499 },
500 }; 500 };
@@ -556,7 +556,7 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e
556 isTodosEnabled={todos.isFeatureActive} 556 isTodosEnabled={todos.isFeatureActive}
557 isWorkspaceEnabled={workspaces.isFeatureActive} 557 isWorkspaceEnabled={workspaces.isFeatureActive}
558 lockingFeatureEnabled={lockingFeatureEnabled} 558 lockingFeatureEnabled={lockingFeatureEnabled}
559 noUpdates={this.props.stores.settings.app.noUpdates} 559 automaticUpdates={this.props.stores.settings.app.automaticUpdates}
560 hibernationEnabled={this.props.stores.settings.app.hibernate} 560 hibernationEnabled={this.props.stores.settings.app.hibernate}
561 isDarkmodeEnabled={this.props.stores.settings.app.darkMode} 561 isDarkmodeEnabled={this.props.stores.settings.app.darkMode}
562 isAdaptableDarkModeEnabled={this.props.stores.settings.app.adaptableDarkMode} 562 isAdaptableDarkModeEnabled={this.props.stores.settings.app.adaptableDarkMode}