mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-26 23:25:53 -05:00
Fixed partly hidden sub-menus, removed AV status.
This commit is contained in:
parent
cf36e4acea
commit
aca7523d4f
@ -2241,8 +2241,8 @@ function createMeshCore(agent)
|
|||||||
|
|
||||||
if ((flags & 4) && (process.platform == 'win32')) {
|
if ((flags & 4) && (process.platform == 'win32')) {
|
||||||
// Update anti-virus information
|
// Update anti-virus information
|
||||||
var av = null;
|
var av = [];
|
||||||
try { av = require('win-info').av(); } catch (ex) { av = { product: 'Error', updated: false, enabled: false }; }
|
//try { av = require('win-info').av(); } catch (ex) { av = [ { product: 'Error', updated: false, enabled: false } ]; }
|
||||||
if ((meshCoreObj.av == null) || (JSON.stringify(meshCoreObj.av) != JSON.stringify(av))) { meshCoreObj.av = av; mesh.SendCommand(meshCoreObj); }
|
if ((meshCoreObj.av == null) || (JSON.stringify(meshCoreObj.av) != JSON.stringify(av))) { meshCoreObj.av = av; mesh.SendCommand(meshCoreObj); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
4
agents/meshcore.min.js
vendored
4
agents/meshcore.min.js
vendored
@ -2241,8 +2241,8 @@ function createMeshCore(agent)
|
|||||||
|
|
||||||
if ((flags & 4) && (process.platform == 'win32')) {
|
if ((flags & 4) && (process.platform == 'win32')) {
|
||||||
// Update anti-virus information
|
// Update anti-virus information
|
||||||
var av = null;
|
var av = [];
|
||||||
try { av = require('win-info').av(); } catch (ex) { av = { product: 'Error', updated: false, enabled: false }; }
|
//try { av = require('win-info').av(); } catch (ex) { av = [ { product: 'Error', updated: false, enabled: false } ]; }
|
||||||
if ((meshCoreObj.av == null) || (JSON.stringify(meshCoreObj.av) != JSON.stringify(av))) { meshCoreObj.av = av; mesh.SendCommand(meshCoreObj); }
|
if ((meshCoreObj.av == null) || (JSON.stringify(meshCoreObj.av) != JSON.stringify(av))) { meshCoreObj.av = av; mesh.SendCommand(meshCoreObj); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -317,7 +317,8 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.room4submenu {
|
.room4submenu {
|
||||||
min-height: calc(100vh - 159px);
|
/*min-height: calc(100vh - 159px);*/
|
||||||
|
min-height: calc(100vh - 184px);
|
||||||
}
|
}
|
||||||
|
|
||||||
#centralTable {
|
#centralTable {
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user