aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/layout/AppLayout.js
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-24 13:02:29 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-24 13:02:29 +0100
commitc65bec3e5ccfaa8cdd8a864a7f9b70aba9ddab1e (patch)
treee8d89cad355d0faa62a0163ed53c18870892903a /src/components/layout/AppLayout.js
parentdocs: add leofiore as a contributor for bug (#2360) (diff)
downloadferdium-app-c65bec3e5ccfaa8cdd8a864a7f9b70aba9ddab1e.tar.gz
ferdium-app-c65bec3e5ccfaa8cdd8a864a7f9b70aba9ddab1e.tar.zst
ferdium-app-c65bec3e5ccfaa8cdd8a864a7f9b70aba9ddab1e.zip
#2359 Disable available updates behaviour based on automaticUpdates
Diffstat (limited to 'src/components/layout/AppLayout.js')
-rw-r--r--src/components/layout/AppLayout.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/layout/AppLayout.js b/src/components/layout/AppLayout.js
index eb36ea431..4474fe0f4 100644
--- a/src/components/layout/AppLayout.js
+++ b/src/components/layout/AppLayout.js
@@ -126,7 +126,7 @@ class AppLayout extends Component {
126 126
127 const { intl } = this.props; 127 const { intl } = this.props;
128 128
129 const { locked } = settings.app; 129 const { locked, automaticUpdates } = settings.app;
130 if (locked) { 130 if (locked) {
131 return <LockedScreen />; 131 return <LockedScreen />;
132 } 132 }
@@ -191,7 +191,7 @@ class AppLayout extends Component {
191 {intl.formatMessage(messages.servicesUpdated)} 191 {intl.formatMessage(messages.servicesUpdated)}
192 </InfoBar> 192 </InfoBar>
193 )} 193 )}
194 {appUpdateIsDownloaded && this.state.shouldShowAppUpdateInfoBar && ( 194 {automaticUpdates && appUpdateIsDownloaded && this.state.shouldShowAppUpdateInfoBar && (
195 <AppUpdateInfoBar 195 <AppUpdateInfoBar
196 onInstallUpdate={installAppUpdate} 196 onInstallUpdate={installAppUpdate}
197 onHide={() => { 197 onHide={() => {