Remove trailing forward slash from api endpoint
For consistency, I have removed the trailing / on the get boot
settings request. This keeps the file value listed in the browser
developer tool's network interface consistent in naming and
makes debugging a better experience.
Signed-off-by: Derick Montague <derick.montague@ibm.com>
Change-Id: I8f2e5b58e12bba1c17c8a483f638e1d727883c6a
diff --git a/src/store/modules/Control/BootSettingsStore.js b/src/store/modules/Control/BootSettingsStore.js
index 99542b8..7a36dd8 100644
--- a/src/store/modules/Control/BootSettingsStore.js
+++ b/src/store/modules/Control/BootSettingsStore.js
@@ -32,7 +32,7 @@
actions: {
async getBootSettings({ commit }) {
return await api
- .get('/redfish/v1/Systems/system/')
+ .get('/redfish/v1/Systems/system')
.then(({ data: { Boot } }) => {
commit(
'setBootSourceOptions',