Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/caabb032f3fb98b14130eb571c49f6fd711be146?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Persist selected filter for interactive searches

pull/10196/head
Bogdan 5 months ago
parent ce9c5d4d97
commit caabb032f3

@ -306,7 +306,12 @@ export const actionHandlers = handleThunks({
export const reducers = createHandleActions({ export const reducers = createHandleActions({
[CLEAR_RELEASES]: (state) => { [CLEAR_RELEASES]: (state) => {
return Object.assign({}, state, defaultState); const {
selectedFilterKey,
...otherDefaultState
} = defaultState;
return Object.assign({}, state, otherDefaultState);
}, },
[UPDATE_RELEASE]: (state, { payload }) => { [UPDATE_RELEASE]: (state, { payload }) => {

Loading…
Cancel
Save