Set table busy state on load
- Add busy prop to tables
Signed-off-by: Kenneth Fullbright <kennyneedsmilky@gmail.com>
Change-Id: I4416f12967c9a0ad6c8bb782c7d8de5c17fdd195
diff --git a/src/views/Logs/PostCodeLogs/PostCodeLogs.vue b/src/views/Logs/PostCodeLogs/PostCodeLogs.vue
index 6ef575e..d116d2e 100644
--- a/src/views/Logs/PostCodeLogs/PostCodeLogs.vue
+++ b/src/views/Logs/PostCodeLogs/PostCodeLogs.vue
@@ -64,6 +64,7 @@
:per-page="perPage"
:current-page="currentPage"
:filter="searchFilter"
+ :busy="isBusy"
@filtered="onFiltered"
@row-selected="onRowSelected($event, filteredLogs.length)"
>
@@ -208,6 +209,7 @@
},
data() {
return {
+ isBusy: true,
fields: [
{
key: 'checkbox',
@@ -297,9 +299,10 @@
},
created() {
this.startLoader();
- this.$store
- .dispatch('postCodeLogs/getPostCodesLogData')
- .finally(() => this.endLoader());
+ this.$store.dispatch('postCodeLogs/getPostCodesLogData').finally(() => {
+ this.endLoader();
+ this.isBusy = false;
+ });
},
methods: {
exportAllLogsString() {