summaryrefslogtreecommitdiff
path: root/src/store/modules/HardwareStatus/SystemStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/HardwareStatus/SystemStore.js')
-rw-r--r--src/store/modules/HardwareStatus/SystemStore.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/store/modules/HardwareStatus/SystemStore.js b/src/store/modules/HardwareStatus/SystemStore.js
index 50c8b6f7d..7fbd6bc41 100644
--- a/src/store/modules/HardwareStatus/SystemStore.js
+++ b/src/store/modules/HardwareStatus/SystemStore.js
@@ -27,6 +27,9 @@ const SystemStore = {
system.processorSummaryCoreCount = data.ProcessorSummary?.CoreCount;
system.powerState = data.PowerState;
system.serialNumber = data.SerialNumber;
+ system.serialConsoleEnabled = data.SerialConsole.ServiceEnabled;
+ system.serialConsoleMaxSessions =
+ data.SerialConsole.MaxConcurrentSessions;
system.healthRollup = data.Status?.HealthRollup;
system.subModel = data.SubModel;
system.statusState = data.Status?.State;