mirror of
https://github.com/Readarr/Readarr
synced 2026-03-19 19:13:24 +01:00
health check selector fix
This commit is contained in:
parent
f496d96907
commit
fa653bf546
2 changed files with 2 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ import Health from './Health';
|
|||
|
||||
function createMapStateToProps() {
|
||||
return createSelector(
|
||||
createHealthCheckSelector(),
|
||||
(state) => state.system.health,
|
||||
(state) => state.settings.downloadClients.isTestingAll,
|
||||
(state) => state.settings.indexers.isTestingAll,
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ import createHealthCheckSelector from 'Store/Selectors/createHealthCheckSelector
|
|||
|
||||
function createMapStateToProps() {
|
||||
return createSelector(
|
||||
createHealthCheckSelector(),
|
||||
(state) => state.app,
|
||||
(state) => state.system.health,
|
||||
(app, health) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue