1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Devices select all button will no longer select devices in collapsed groups.

This commit is contained in:
Ylian Saint-Hilaire 2022-07-29 11:12:43 -07:00
parent 994ed714da
commit 4dea7e435c
2 changed files with 4 additions and 2 deletions

View file

@ -4966,7 +4966,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
if ((mesh == null) || (mesh.mtype != 1) || (parent.GetMeshRights(user, command.meshid) & MESHRIGHT_EDITMESH) == 0) return null; // This user must have mesh rights to edit the device group
var amtDevices = [];
// Decode a JSON file from the Intel EMA migration tool
// Decode a JSON file from the Intel SCS migration tool
if ((typeof command.amtdevices == 'object') && (typeof command.amtdevices.ApplicationData == 'object') && (command.amtdevices.ApplicationData.Application == 'Intel EMA Migration Tool') && (Array.isArray(command.amtdevices['Managed Systems']))) {
for (var i in command.amtdevices['Managed Systems']) {
const importDev = command.amtdevices['Managed Systems'][i];