Skip to content
Snippets Groups Projects
Commit 2e73a57b authored by lowercasedonkey's avatar lowercasedonkey
Browse files

bugfix, I think

parent 843a56ee
No related branches found
No related tags found
1 merge request!10440[Bump to 1151] Compress V.trinkets
...@@ -682,9 +682,10 @@ App.Desc.officeDescription = function(lastElement) { ...@@ -682,9 +682,10 @@ App.Desc.officeDescription = function(lastElement) {
const nameArray = []; const nameArray = [];
for (const obj of slaveArray) { for (const obj of slaveArray) {
if (obj.id && getSlave(obj.id)) { if (obj.id && getSlave(obj.id)) {
V.AS = obj.id; nameArray.push(App.UI.DOM.link(
nameArray.push(App.UI.DOM.passageLink(
getSlave(obj.id).slaveName, getSlave(obj.id).slaveName,
() => { V.AS = obj.id; },
[],
"Slave Interact" "Slave Interact"
)); ));
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment