Skip to content

Commit

Permalink
Merge branch 'develop' into eflumerf/RemoveUPS
Browse files Browse the repository at this point in the history
  • Loading branch information
eflumerf committed Feb 17, 2025
2 parents e1cb022 + dab9b88 commit b6e7536
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 8 additions & 4 deletions WebGUI/html/Iterate.html
Original file line number Diff line number Diff line change
Expand Up @@ -1120,15 +1120,18 @@
if(targetChildren[m].nodeName == "node")
{
if(targetCount++) targetCSVStr += ",";

var targetChildrenChildren = targetChildren[m].getElementsByTagName("node");

//found target record
// second record is link
// first two nodes are uid and table
targetCSVStr +=
targetChildren[m].children[1].getElementsByTagName(
targetChildrenChildren[1].getElementsByTagName(
"LinkTableName")[0].getAttribute("value") +
"/" +
targetChildren[m].children[1].getElementsByTagName(
"UID")[0].getAttribute("value");
targetChildrenChildren[1].getElementsByTagName(
"UID")[0].getAttribute("value");
}
} //end target loop

Expand Down Expand Up @@ -1166,7 +1169,8 @@
} //end try
catch(e)
{
Debug.log("Invalid iteration plan loaded: " + e);
Debug.err("Invalid or corrupt iteration plan '" + plan +
"' loaded (please notify admins): " + e);
_commands = []; //clear
}

Expand Down
2 changes: 2 additions & 0 deletions WebGUI/js/Desktop.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ Desktop.createDesktop = function(security) {
_desktopElement.style.height = (window.innerHeight-_desktopElement.offsetTop) + "px";
_desktopElement.style.width = (window.innerWidth-_desktopElement.offsetLeft) + "px";
if(!_dashboard) return; //initial calls dashboard might not be defined
Debug.log("_handleDesktopResize()");

_dashboard.redrawDashboard();
if(_login) _login.redrawLogin();
if(_icons) _icons.redrawIcons();
Expand Down

0 comments on commit b6e7536

Please sign in to comment.