From 4904126c0b1d9a3aa6d8b4012a41d2b9e03e5ebc Mon Sep 17 00:00:00 2001 From: Derick Montague Date: Tue, 11 May 2021 16:55:09 -0500 Subject: 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 Change-Id: I8f2e5b58e12bba1c17c8a483f638e1d727883c6a --- src/store/modules/Control/BootSettingsStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/store/modules/Control/BootSettingsStore.js b/src/store/modules/Control/BootSettingsStore.js index 99542b88..7a36dd84 100644 --- a/src/store/modules/Control/BootSettingsStore.js +++ b/src/store/modules/Control/BootSettingsStore.js @@ -32,7 +32,7 @@ const BootSettingsStore = { actions: { async getBootSettings({ commit }) { return await api - .get('/redfish/v1/Systems/system/') + .get('/redfish/v1/Systems/system') .then(({ data: { Boot } }) => { commit( 'setBootSourceOptions', -- cgit v1.2.3