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

add year to search
This commit is contained in:
Devin Buhl 2017-01-19 20:07:33 -05:00 committed by GitHub
commit a53768463b
1 changed files with 3 additions and 1 deletions

View File

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