Fixed partly hidden sub-menus, removed AV status.

This commit is contained in:
Ylian Saint-Hilaire 2019-08-05 09:26:53 -07:00
parent fdcb9fe5b8
commit bf0fc6d7dc
4 changed files with 7 additions and 6 deletions

View File

@ -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); }
} }
} }

View File

@ -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); }
} }
} }

View File

@ -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