fix page navigation issue

This commit is contained in:
Rodrigo Quelca
2021-08-31 00:03:41 +00:00
parent 79284f2027
commit 587a0957ac

View File

@@ -779,13 +779,13 @@ export default {
if (newData && newData.customListId) {
this.data.customListId = newData.customListId;
}
if (this.typeView === "GRID") {
if (this.typeView === "GRID" && this.$refs["vueTable"]) {
this.$refs["vueTable"].getData();
}
if (this.typeView === "CARD") {
if (this.typeView === "CARD" && this.$refs["vueCardView"]) {
this.$refs["vueCardView"].getData();
}
if (this.typeView === "LIST") {
if (this.typeView === "LIST" && this.$refs["vueCardView"]) {
this.$refs["vueListView"].getData();
}
},