Fixed self device group permission change and agent group uninstall.

This commit is contained in:
Ylian Saint-Hilaire
2019-10-26 10:57:40 -07:00
parent 92e7a065de
commit 84a37b4f5a
6 changed files with 14 additions and 16 deletions

View File

@@ -3329,11 +3329,10 @@
}
function groupActionFunction() {
var addedOptions = '';
var addedOptions = '', nodeids = getCheckedDevices();
// Check if any of the selected devices have a MQTT connection active
if (features & 0x00400000) {
var nodeids = getCheckedDevices();
for (var i in nodeids) { if ((getNodeFromId(nodeids[i]).conn & 16) != 0) { addedOptions += '<option value=103>' + "Envoyer un Message MQTT" + '</option>'; break; } }
}