Merge pull request #358 from Radarr/patch/add-year-to-search

add year to search
pull/363/head
Devin Buhl 8 years ago committed by GitHub
commit a53768463b

@ -25,7 +25,9 @@ $.fn.bindSearch = function() {
minLength : 1 minLength : 1
}, { }, {
name : 'series', name : 'series',
displayKey : 'title', displayKey : function(series) {
return series.title + ' (' + series.year + ')';
},
source : substringMatcher() source : substringMatcher()
}); });

Loading…
Cancel
Save