mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 22:39:18 +02:00
Fix for ChildList View Properties link width
Fix for ChildList View Properties link width
This commit is contained in:
parent
f66118a437
commit
ceed4d68f5
1 changed files with 1 additions and 1 deletions
|
@ -4832,7 +4832,7 @@ function setChildListData(element, children, parentID, entityHostType = "") {
|
||||||
if (children[i].entityHostType !== "domain") {
|
if (children[i].entityHostType !== "domain") {
|
||||||
entityHostTypeClass = " class='" + children[i].entityHostType + "Entity'";
|
entityHostTypeClass = " class='" + children[i].entityHostType + "Entity'";
|
||||||
}
|
}
|
||||||
let navigatorBtn = "<span onClick='navigateToSpecificEntity(" + '"'+ children[i].id + '"'+ ")'>🡆</span>";
|
let navigatorBtn = "<span class='viewChildProperties' onClick='navigateToSpecificEntity(" + '"'+ children[i].id + '"'+ ")'>🡆</span>";
|
||||||
renderer += "<tr" + entityHostTypeClass + "><td>" + children[i].type + "</td><td>" + children[i].name + "</td><td>" + navigatorBtn + "</td></tr>";
|
renderer += "<tr" + entityHostTypeClass + "><td>" + children[i].type + "</td><td>" + children[i].name + "</td><td>" + navigatorBtn + "</td></tr>";
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue