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

Fixed mtype not being a number type in database.

This commit is contained in:
Ylian Saint-Hilaire 2020-12-28 23:33:08 -08:00
parent 8fc23995b9
commit 0769185831
4 changed files with 13 additions and 4 deletions

View file

@ -1790,7 +1790,7 @@
}
function account_createMeshEx(button, tag) {
meshserver.send({ action: 'createmesh', meshname: Q('dp3meshname').value, meshtype: Q('dp3meshtype').value, desc: Q('dp3meshdesc').value });
meshserver.send({ action: 'createmesh', meshname: Q('dp3meshname').value, meshtype: parseInt(Q('dp3meshtype').value), desc: Q('dp3meshdesc').value });
}
function account_validateDeleteAccount() {