Reformat files with new linter
All changes should be whitespace, and were done using npm run-script
lint.
Change-Id: I943c6b435c5c872841af5affc1e89910468b5ca6
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/src/store/modules/HardwareStatus/PowerSupplyStore.js b/src/store/modules/HardwareStatus/PowerSupplyStore.js
index dc7691d..82b7174 100644
--- a/src/store/modules/HardwareStatus/PowerSupplyStore.js
+++ b/src/store/modules/HardwareStatus/PowerSupplyStore.js
@@ -50,7 +50,7 @@
return await api
.get('/redfish/v1/Chassis')
.then(({ data: { Members } }) =>
- Members.map((member) => member['@odata.id'])
+ Members.map((member) => member['@odata.id']),
)
.catch((error) => console.log(error));
},
@@ -62,7 +62,7 @@
.then((supplies) => {
let suppliesList = [];
supplies.forEach(
- (supply) => (suppliesList = [...suppliesList, ...supply])
+ (supply) => (suppliesList = [...suppliesList, ...supply]),
);
commit('setPowerSupply', suppliesList);
})