summaryrefslogtreecommitdiff
path: root/src/store/modules/HardwareStatus/MotherboardStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/HardwareStatus/MotherboardStore.js')
-rw-r--r--src/store/modules/HardwareStatus/MotherboardStore.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/store/modules/HardwareStatus/MotherboardStore.js b/src/store/modules/HardwareStatus/MotherboardStore.js
index 7b2fe032..09f24498 100644
--- a/src/store/modules/HardwareStatus/MotherboardStore.js
+++ b/src/store/modules/HardwareStatus/MotherboardStore.js
@@ -23,10 +23,9 @@ const MotherboardStore = {
let url = null;
if (lastHour) {
url =
- '/redfish/v1/TelemetryService/MetricReports/hour_data&id=other_temp&period=last_hour';
+ '/redfish/v1/TelemetryService/MetricReports/other_temp&period=last_hour';
} else {
- url =
- '/redfish/v1/TelemetryService/MetricReports/hour_data&id=other_temp';
+ url = '/redfish/v1/TelemetryService/MetricReports/other_temp';
}
return await api
.get(url)