mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Fixed DateCells
This commit is contained in:
parent
40f49d7385
commit
fe48fd9fe9
2 changed files with 7 additions and 4 deletions
|
@ -14,10 +14,9 @@ define(
|
|||
var date = this.model.get(this.column.get('name'));
|
||||
|
||||
if (date) {
|
||||
this.$el.html(FormatHelpers.DateHelper(date));
|
||||
this.$el.html('<div>' + FormatHelpers.DateHelper(date) + '</div>');
|
||||
|
||||
//TODO: Figure out why this makes the series grid freak out
|
||||
//this.$el.attr('title', Moment(date).format('LLLL'));
|
||||
this.$el.children('div').attr('title', Moment(date).format('LLLL'));
|
||||
}
|
||||
|
||||
return this;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue