diff options
author | Nikhil Ashoka <a.nikhil@ibm.com> | 2022-01-13 15:37:51 +0300 |
---|---|---|
committer | Dixsie Wolmers <dixsiew@gmail.com> | 2022-02-14 18:30:49 +0300 |
commit | 453ad921391788b4778299bb7d080f4cc644fc40 (patch) | |
tree | 7aa006c9d713f69097fde74e243c72f367101382 /src/views | |
parent | 1d9257e5a355bbc0540b70ab2b2d9a17dea6d986 (diff) | |
download | webui-vue-453ad921391788b4778299bb7d080f4cc644fc40.tar.xz |
Unable to Delete dumps and incorrect toast message
Unable to delete all dumps and displaying incorrect event log delete message
Able to delete all the Dumps
Approriate message is displayed in toast after deleting Event logs
Signed-off-by: Nikhil Ashoka <a.nikhil@ibm.com>
Change-Id: I1169bcd8e6308d50baf5c7ddcab5c511edcbc875
Diffstat (limited to 'src/views')
-rw-r--r-- | src/views/Logs/EventLogs/EventLogs.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/views/Logs/EventLogs/EventLogs.vue b/src/views/Logs/EventLogs/EventLogs.vue index 948721170..5b8ca110b 100644 --- a/src/views/Logs/EventLogs/EventLogs.vue +++ b/src/views/Logs/EventLogs/EventLogs.vue @@ -538,7 +538,11 @@ export default { 'eventLog/deleteAllEventLogs', this.selectedRows.length ) - .then((message) => this.successToast(message)) + .then(() => { + this.successToast( + this.$tc('pageEventLogs.toast.successDelete', uris.length) + ); + }) .catch(({ message }) => this.errorToast(message)); } else { this.deleteLogs(uris); |