Missing Grid uses ToBestDateString for formatting.

Fixed padding for No Data being cut off (also when loading) for the grids.
This commit is contained in:
Mark McDowall 2011-09-30 09:18:13 -07:00
parent 30ffe79442
commit 71e1827ef8
4 changed files with 10 additions and 1 deletions

View file

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using NzbDrone.Core;
using NzbDrone.Core.Providers;
using NzbDrone.Web.Models;
using Telerik.Web.Mvc;
@ -38,6 +39,7 @@ namespace NzbDrone.Web.Controllers
Overview = e.Overview,
SeriesTitle = e.Series.Title,
AirDate = e.AirDate.Value,
AirDateString = e.AirDate.Value.ToBestDateString()
});
return View(new GridModel(missing));