1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

New: Ability to forcibly grab a release from Interactive Search

Closes #395
This commit is contained in:
Mark McDowall
2019-01-18 11:46:21 -08:00
parent 70fb1551af
commit 8aecec507e
5 changed files with 116 additions and 14 deletions
@@ -90,6 +90,7 @@ const columns = [
function InteractiveSearch(props) {
const {
searchPayload,
isFetching,
isPopulated,
error,
@@ -164,6 +165,7 @@ function InteractiveSearch(props) {
<InteractiveSearchRow
key={item.guid}
{...item}
searchPayload={searchPayload}
longDateFormat={longDateFormat}
timeFormat={timeFormat}
onGrabPress={onGrabPress}
@@ -186,6 +188,7 @@ function InteractiveSearch(props) {
}
InteractiveSearch.propTypes = {
searchPayload: PropTypes.object.isRequired,
isFetching: PropTypes.bool.isRequired,
isPopulated: PropTypes.bool.isRequired,
error: PropTypes.object,