Fix for ChildList View Properties link width

Fix for ChildList View Properties link width
This commit is contained in:
Alezia Kurdis 2025-04-06 14:21:56 -04:00 committed by GitHub
parent f66118a437
commit ceed4d68f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4832,7 +4832,7 @@ function setChildListData(element, children, parentID, entityHostType = "") {
if (children[i].entityHostType !== "domain") {
entityHostTypeClass = " class='" + children[i].entityHostType + "Entity'";
}
let navigatorBtn = "<span onClick='navigateToSpecificEntity(" + '"'+ children[i].id + '"'+ ")'>&#129094;</span>";
let navigatorBtn = "<span class='viewChildProperties' onClick='navigateToSpecificEntity(" + '"'+ children[i].id + '"'+ ")'>&#129094;</span>";
renderer += "<tr" + entityHostTypeClass + "><td>" + children[i].type + "</td><td>" + children[i].name + "</td><td>" + navigatorBtn + "</td></tr>";
}
} else {