mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-01-12 15:33:20 -05:00
Version 0.6.79
This commit is contained in:
parent
e314ba1d16
commit
326dbb0b19
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "meshcentral",
|
"name": "meshcentral",
|
||||||
"version": "0.6.78",
|
"version": "0.6.79",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Remote Device Management",
|
"Remote Device Management",
|
||||||
"Remote Device Monitoring",
|
"Remote Device Monitoring",
|
||||||
|
2
public/scripts/amt-wsman-0.2.0-min.js
vendored
2
public/scripts/amt-wsman-0.2.0-min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -5737,7 +5737,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Active Users
|
// Active Users
|
||||||
if (node.users && node.conn && (node.users.length > 0) && (node.conn & 1)) { x += addDeviceAttribute(format("Active User{0}", ((node.users.length > 1)?'s':'')), node.users.join(', ')); }
|
if (node.users && node.conn && (node.users.length > 0) && (node.conn & 1)) { x += addDeviceAttribute(((node.users.length > 1)?'Active Users':'Active User'), EscapeHtml(node.users.join(', '))); }
|
||||||
|
|
||||||
// Display device user consent
|
// Display device user consent
|
||||||
if (node.agent != null) {
|
if (node.agent != null) {
|
||||||
@ -5772,9 +5772,9 @@
|
|||||||
var groupingTags = '<i>' + "None" + '</i>';
|
var groupingTags = '<i>' + "None" + '</i>';
|
||||||
if (node.tags != null) { groupingTags = ''; for (var i in node.tags) { groupingTags += '<span class="tagSpan">' + EscapeHtml(node.tags[i]) + '</span>'; } }
|
if (node.tags != null) { groupingTags = ''; for (var i in node.tags) { groupingTags += '<span class="tagSpan">' + EscapeHtml(node.tags[i]) + '</span>'; } }
|
||||||
if ((meshrights & 4) != 0) {
|
if ((meshrights & 4) != 0) {
|
||||||
x += addDeviceAttribute('Tags', '<span onclick=showEditNodeValueDialog(3) style=cursor:pointer>' + groupingTags + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>');
|
x += addDeviceAttribute("Tags", '<span onclick=showEditNodeValueDialog(3) style=cursor:pointer>' + groupingTags + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>');
|
||||||
} else {
|
} else {
|
||||||
x += addDeviceAttribute('Tags', groupingTags);
|
x += addDeviceAttribute("Tags", groupingTags);
|
||||||
}
|
}
|
||||||
|
|
||||||
x += '</table><br />';
|
x += '</table><br />';
|
||||||
|
Loading…
Reference in New Issue
Block a user