aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/EditSettingsScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/settings/EditSettingsScreen.tsx')
-rw-r--r--src/containers/settings/EditSettingsScreen.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/containers/settings/EditSettingsScreen.tsx b/src/containers/settings/EditSettingsScreen.tsx
index a6c4561dd..fbbed629a 100644
--- a/src/containers/settings/EditSettingsScreen.tsx
+++ b/src/containers/settings/EditSettingsScreen.tsx
@@ -853,6 +853,7 @@ class EditSettingsScreen extends Component<EditSettingsScreenProps> {
853 const { app } = this.props.stores; 853 const { app } = this.props.stores;
854 const { 854 const {
855 updateStatus, 855 updateStatus,
856 updateVersion,
856 updateStatusTypes, 857 updateStatusTypes,
857 isClearingAllCache, 858 isClearingAllCache,
858 lockingFeatureEnabled, 859 lockingFeatureEnabled,
@@ -860,13 +861,13 @@ class EditSettingsScreen extends Component<EditSettingsScreenProps> {
860 const { checkForUpdates, installUpdate, clearAllCache } = 861 const { checkForUpdates, installUpdate, clearAllCache } =
861 this.props.actions.app; 862 this.props.actions.app;
862 const form = this.prepareForm(); 863 const form = this.prepareForm();
863
864 return ( 864 return (
865 <ErrorBoundary> 865 <ErrorBoundary>
866 <EditSettingsForm 866 <EditSettingsForm
867 form={form} 867 form={form}
868 checkForUpdates={checkForUpdates} 868 checkForUpdates={checkForUpdates}
869 installUpdate={installUpdate} 869 installUpdate={installUpdate}
870 updateVersion={updateVersion}
870 isCheckingForUpdates={updateStatus === updateStatusTypes.CHECKING} 871 isCheckingForUpdates={updateStatus === updateStatusTypes.CHECKING}
871 isUpdateAvailable={updateStatus === updateStatusTypes.AVAILABLE} 872 isUpdateAvailable={updateStatus === updateStatusTypes.AVAILABLE}
872 noUpdateAvailable={updateStatus === updateStatusTypes.NOT_AVAILABLE} 873 noUpdateAvailable={updateStatus === updateStatusTypes.NOT_AVAILABLE}