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

@ -9583,7 +9583,7 @@
}
function account_createMeshEx(button, tag) {
meshserver.send({ action: 'createmesh', meshname: Q('dp2meshname').value, meshtype: Q('dp2meshtype').value, desc: Q('dp2meshdesc').value });
meshserver.send({ action: 'createmesh', meshname: Q('dp2meshname').value, meshtype: parseInt(Q('dp2meshtype').value), desc: Q('dp2meshdesc').value });
}
function account_validateDeleteAccount() {