mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
Auto complete for paths added. Config text boxes are now wider.
This commit is contained in:
parent
ff673f3d7d
commit
bda226096b
12 changed files with 117 additions and 41 deletions
|
@ -96,6 +96,9 @@ namespace NzbDrone.Web.Controllers
|
|||
{
|
||||
ViewData["viewName"] = "Sabnzbd";
|
||||
|
||||
var sabDropDir = _configProvider.SabDropDirectory;
|
||||
var selectList = new SelectList(new List<string> {sabDropDir}, sabDropDir);
|
||||
|
||||
var model = new SabnzbdSettingsModel
|
||||
{
|
||||
SabHost = _configProvider.SabHost,
|
||||
|
@ -105,7 +108,8 @@ namespace NzbDrone.Web.Controllers
|
|||
SabPassword = _configProvider.SabPassword,
|
||||
SabTvCategory = _configProvider.SabTvCategory,
|
||||
SabTvPriority = _configProvider.SabTvPriority,
|
||||
SabDropDirectory = _configProvider.SabDropDirectory
|
||||
SabDropDirectory = sabDropDir,
|
||||
SabDropDirectorySelectList = selectList
|
||||
};
|
||||
|
||||
return View("Index", model);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue