mirror of
https://github.com/Radarr/Radarr
synced 2025-12-26 18:24:03 +01:00
Add year to quick search results
This commit is contained in:
parent
40ca469339
commit
3ab3e66853
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