summaryrefslogtreecommitdiff
path: root/src/store/modules/Logs/PostCodeLogsStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/Logs/PostCodeLogsStore.js')
-rw-r--r--src/store/modules/Logs/PostCodeLogsStore.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/store/modules/Logs/PostCodeLogsStore.js b/src/store/modules/Logs/PostCodeLogsStore.js
index 836f9844..7648b13c 100644
--- a/src/store/modules/Logs/PostCodeLogsStore.js
+++ b/src/store/modules/Logs/PostCodeLogsStore.js
@@ -37,16 +37,16 @@ const PostCodeLogsStore = {
async deleteAllPostCodeLogs({ dispatch }, data) {
return await api
.post(
- '/redfish/v1/Systems/system/LogServices/PostCodes/Actions/LogService.ClearLog'
+ '/redfish/v1/Systems/system/LogServices/PostCodes/Actions/LogService.ClearLog',
)
.then(() => dispatch('getPostCodesLogData'))
.then(() =>
- i18n.tc('pagePostCodeLogs.toast.successDelete', data.length)
+ i18n.tc('pagePostCodeLogs.toast.successDelete', data.length),
)
.catch((error) => {
console.log(error);
throw new Error(
- i18n.tc('pagePostCodeLogs.toast.errorDelete', data.length)
+ i18n.tc('pagePostCodeLogs.toast.errorDelete', data.length),
);
});
},