mirror of
https://github.com/unraid/webgui.git
synced 2026-02-13 12:38:45 -06:00
Fix: wrong variable name prevents config creation
This commit is contained in:
@@ -778,7 +778,7 @@ $showAdditionalInfo = '';
|
||||
opts.Buttons,
|
||||
(opts.Required == "true") ? "required" : ""
|
||||
);
|
||||
newConfig = "<div id='ConfigNum"+opts.Number+"' class='config_"+Opts.Display+"'' >"+newConfig+"</div>";
|
||||
newConfig = "<div id='ConfigNum"+opts.Number+"' class='config_"+opts.Display+"'' >"+newConfig+"</div>";
|
||||
newConfig = $($.parseHTML(newConfig));
|
||||
value = newConfig.find("input[name='confValue[]']");
|
||||
if (opts.Type == "Path") {
|
||||
|
||||
Reference in New Issue
Block a user