Skip to content

Commit 210b127

Browse files
Kees-Tsivaprabug
authored andcommitted
Wrong store function used in Dump.vue
In Dump.vue the "store" function getBmcDumpEntries is used but this should be getAllDumps. This because Dump.vue wants to get all the dump entries and not just the BCM entries. Also the output format of getBmcDumpEntries is not what Dump.vue expects causing that WebUI does not display any dump entry even when BCM dump entries exists. Note: The "dumps" path does not exist in the default src/router/routes.js but (currently) only in src/env/router.ibm.js Change-Id: I0c211126e1f1d0394455ea7e7ff627814674e1fa Signed-off-by: Kees Trommel <[email protected]>
1 parent 8e1ed79 commit 210b127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/Logs/Dumps/Dumps.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ export default {
306306
},
307307
created() {
308308
this.startLoader();
309-
this.$store.dispatch('dumps/getBmcDumpEntries').finally(() => {
309+
this.$store.dispatch('dumps/getAllDumps').finally(() => {
310310
this.endLoader();
311311
this.isBusy = false;
312312
});

0 commit comments

Comments
 (0)