Fix: Fixed an issue with the year automatically being added to new series when added to NzbDrone.

This commit is contained in:
Mark McDowall 2012-02-29 00:09:53 -08:00
commit dc4e45f72d
3 changed files with 4 additions and 2 deletions

View file

@ -65,7 +65,7 @@ function bindSeriesAutoComplete(selector) {
.data("autocomplete")._renderItem = function (ul, item) {
return $("<li></li>")
.data("item.autocomplete", item)
.append("<a><div class=seriesLookupTitle>" + item.Title + "</div></a>")
.append("<a><div class=seriesLookupTitle>" + item.DisplayedTitle + "</div></a>")
.appendTo(ul);
};
});