mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed failure when trying to add the first root dir (Missing Telerik scripts for combobox).
This commit is contained in:
@@ -215,6 +215,7 @@ namespace NzbDrone.Web.Controllers
|
|||||||
{
|
{
|
||||||
Id = 0,
|
Id = 0,
|
||||||
Path = "",
|
Path = "",
|
||||||
|
CleanPath = "",
|
||||||
SelectList = new SelectList(new List<string> { "" }, "")
|
SelectList = new SelectList(new List<string> { "" }, "")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -1,7 +1,13 @@
|
|||||||
@model List<RootDir>
|
@model List<RootDir>
|
||||||
@using NzbDrone.Core.Repository
|
@using NzbDrone.Core.Repository
|
||||||
|
|
||||||
<script type="text/javascript" src="../../Scripts/2011.1.315/telerik.window.min.js"></script>
|
@{ Html.Telerik().ScriptRegistrar().DefaultGroup(group => group
|
||||||
|
.Add("telerik.common.min.js")
|
||||||
|
.Add("telerik.draganddrop.min.js")
|
||||||
|
.Add("telerik.window.min.js")
|
||||||
|
.Add("telerik.panelbar.min.js")
|
||||||
|
.Add("telerik.list.min.js")
|
||||||
|
.Add("telerik.combobox.min.js")); }
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.root_dir_text
|
.root_dir_text
|
||||||
|
Reference in New Issue
Block a user