diff --git a/client/src/reducers/index.js b/client/src/reducers/index.js index 7e46f660..17d82608 100644 --- a/client/src/reducers/index.js +++ b/client/src/reducers/index.js @@ -124,9 +124,8 @@ const dashboard = handleActions({ [actions.getVersionSuccess]: (state, { payload }) => { const currentVersion = state.dnsVersion === 'undefined' ? 0 : state.dnsVersion; - if (payload && versionCompare(currentVersion, payload.version) === -1) { + if (payload && versionCompare(currentVersion, payload.new_version) === -1) { const { - version, announcement_url: announcementUrl, new_version: newVersion, can_autoupdate: canAutoUpdate, @@ -134,7 +133,6 @@ const dashboard = handleActions({ const newState = { ...state, - version, announcementUrl, newVersion, canAutoUpdate,