mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Series Table
This commit is contained in:
12
UI/Series/Index/Table/AirDateCell.js
Normal file
12
UI/Series/Index/Table/AirDateCell.js
Normal file
@@ -0,0 +1,12 @@
|
||||
Backgrid.AirDateCell = Backgrid.Cell.extend({
|
||||
className: "air-date-cell",
|
||||
|
||||
render: function () {
|
||||
this.$el.empty();
|
||||
var airDate = this.model.get(this.column.get("name"));
|
||||
|
||||
this.$el.html(bestDateString(airDate));
|
||||
|
||||
return this;
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user