1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-28 23:16:32 -04:00

New: Added UI for parsing release names

Closes #5263
This commit is contained in:
Mark McDowall
2023-05-07 18:55:00 -07:00
committed by Mark McDowall
parent a77ef187af
commit 85e2855981
32 changed files with 980 additions and 46 deletions
+12
View File
@@ -0,0 +1,12 @@
import { createSelector } from 'reselect';
import AppState from 'App/State/AppState';
import ParseAppState from 'App/State/ParseAppState';
export default function parseStateSelector() {
return createSelector(
(state: AppState) => state.parse,
(parse: ParseAppState) => {
return parse;
}
);
}