Free space widgets

Fixed: Free space widgets take up less space on smaller screens
This commit is contained in:
Mark McDowall 2012-12-23 23:16:43 -08:00
parent 607f1b07d3
commit ae0648b8f4
5 changed files with 59 additions and 7 deletions

View file

@ -32,7 +32,7 @@ namespace NzbDrone.Web.Controllers
[OutputCache(Duration = 600)]
public ActionResult FreeSpace()
{
var rootDirs = _rootDirProvider.AllWithFreeSpace();
var rootDirs = _rootDirProvider.FreeSpaceOnDrives();
return PartialView(rootDirs);
}