Skip to content

Commit

Permalink
Dumps available on BMC are not displayed on BMC-GUI (#72)
Browse files Browse the repository at this point in the history
- Dumps are now reflecting in the Dumps table
- Resolved an error related to Dumps table

Signed-off-by: Nikhil Ashoka <[email protected]>
  • Loading branch information
Nikhil-Ashoka authored and GitHub Enterprise committed Mar 3, 2022
1 parent 2bb90e4 commit 0bed3a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/views/Logs/Dumps/Dumps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
:empty-filtered-text="$t('global.table.emptySearchMessage')"
:filter="searchFilter"
:busy="isBusy"
@filtered="onChangeSearchFilter"
@filtered="onFiltered"
@row-selected="onRowSelected($event, filteredTableItems.length)"
>
<!-- Checkbox column -->
Expand Down Expand Up @@ -306,7 +306,7 @@ export default {
},
created() {
this.startLoader();
this.$store.dispatch('dumps/getBmcDumpEntries').finally(() => {
this.$store.dispatch('dumps/getAllDumps').finally(() => {
this.endLoader();
this.isBusy = false;
});
Expand Down
2 changes: 1 addition & 1 deletion src/views/Overview/OverviewDumps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default {
},
},
created() {
this.$store.dispatch('dumps/getBmcDumpEntries').finally(() => {
this.$store.dispatch('dumps/getAllDumps').finally(() => {
this.$root.$emit('overview-dumps-complete');
});
},
Expand Down

0 comments on commit 0bed3a3

Please sign in to comment.