summaryrefslogtreecommitdiff
path: root/src/views/Logs/EventLogs/EventLogs.vue
diff options
context:
space:
mode:
authorKenneth Fullbright <kennyneedsmilky@gmail.com>2021-12-28 01:19:37 +0300
committerDixsie Wolmers <dixsiew@gmail.com>2022-02-04 17:28:46 +0300
commit410578537f7ca6dd76aa406b440b0a435606c448 (patch)
tree6a2530310fc5cbfdd70905af6a49e8bf176a4a16 /src/views/Logs/EventLogs/EventLogs.vue
parentb86f4152ba832ba92a2607c30037d5f818058120 (diff)
downloadwebui-vue-410578537f7ca6dd76aa406b440b0a435606c448.tar.xz
Set table busy state on load
- Add busy prop to tables Signed-off-by: Kenneth Fullbright <kennyneedsmilky@gmail.com> Change-Id: I4416f12967c9a0ad6c8bb782c7d8de5c17fdd195
Diffstat (limited to 'src/views/Logs/EventLogs/EventLogs.vue')
-rw-r--r--src/views/Logs/EventLogs/EventLogs.vue9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/views/Logs/EventLogs/EventLogs.vue b/src/views/Logs/EventLogs/EventLogs.vue
index fb5458f2..94872117 100644
--- a/src/views/Logs/EventLogs/EventLogs.vue
+++ b/src/views/Logs/EventLogs/EventLogs.vue
@@ -82,6 +82,7 @@
:per-page="perPage"
:current-page="currentPage"
:filter="searchFilter"
+ :busy="isBusy"
@filtered="onFiltered"
@row-selected="onRowSelected($event, filteredLogs.length)"
>
@@ -314,6 +315,7 @@ export default {
},
data() {
return {
+ isBusy: true,
fields: [
{
key: 'expandRow',
@@ -434,9 +436,10 @@ export default {
},
created() {
this.startLoader();
- this.$store
- .dispatch('eventLog/getEventLogData')
- .finally(() => this.endLoader());
+ this.$store.dispatch('eventLog/getEventLogData').finally(() => {
+ this.endLoader();
+ this.isBusy = false;
+ });
},
methods: {
changelogStatus(row) {