Skip to content
Snippets Groups Projects
Commit 44974fcd authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'move-SI-notes-into-a-TT' into 'pregmod-master'

move SI notes into a TT

See merge request !8924
parents d675ef42 675b7c95
No related branches found
No related tags found
1 merge request!8924move SI notes into a TT
......@@ -67,6 +67,9 @@ App.UI.SlaveInteract.generateRows = function(array, slave, category, accessCheck
App.UI.DOM.link(
`${item.text} `,
() => { click(item); },
[],
"",
item.note ? item.note : ""
)
);
......@@ -75,11 +78,6 @@ App.UI.SlaveInteract.generateRows = function(array, slave, category, accessCheck
FS.style.fontStyle = "italic";
link.appendChild(FS);
}
// add a note node if required
if (item.note) {
link.appendChild(App.UI.DOM.makeElement('span', ` ${item.note}`, 'note'));
}
}
linkArray.push(link);
}
......
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