diff --git a/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj b/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
index 87e673ede..7f5644d93 100644
--- a/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
+++ b/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
@@ -220,6 +220,7 @@
Always
+ Designer
Always
diff --git a/NzbDrone.Web/Views/History/Index.cshtml b/NzbDrone.Web/Views/History/Index.cshtml
index bdfc46c37..2b7e46ae6 100644
--- a/NzbDrone.Web/Views/History/Index.cshtml
+++ b/NzbDrone.Web/Views/History/Index.cshtml
@@ -57,8 +57,14 @@
"iDisplayLength": 20,
"sPaginationType": "four_button",
"aoColumns": [
- { sWidth: '20px', "bSortable": false, "mDataProp": "Indexer", "fnRender": function (row) {
- return "";
+ {
+ sWidth: '20px', "bSortable": false, "mDataProp": function (source, type, val) {
+ // 'display' and 'filter' use the image
+ if (type === 'display' || type === 'filter') {
+ return "";
+ }
+ // 'sort' and 'type' both just use the raw data
+ return source["Indexer"];
}
}, //Image
{ sWidth: 'auto', "mDataProp": function (source, type, val) {
@@ -97,7 +103,8 @@
"fnRender": function(row) {
var result = "Overview: " + row.aData["EpisodeOverview"] + "
" +
"NZB Title: " + row.aData["NzbTitle"] + "
" +
- "Proper: " + row.aData["IsProper"];
+ "Proper: " + row.aData["IsProper"] + "
" +
+ "Indexer: " + row.aData["Indexer"];
return result;
}
} //Details