mirror of
https://github.com/Radarr/Radarr
synced 2025-12-22 00:05:15 +01:00
Merge pull request #358 from Radarr/patch/add-year-to-search
add year to search
This commit is contained in:
commit
a53768463b
1 changed files with 3 additions and 1 deletions
|
|
@ -25,7 +25,9 @@ $.fn.bindSearch = function() {
|
|||
minLength : 1
|
||||
}, {
|
||||
name : 'series',
|
||||
displayKey : 'title',
|
||||
displayKey : function(series) {
|
||||
return series.title + ' (' + series.year + ')';
|
||||
},
|
||||
source : substringMatcher()
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue