summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Inventory/InventoryTableProcessors.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/HardwareStatus/Inventory/InventoryTableProcessors.vue')
-rw-r--r--src/views/HardwareStatus/Inventory/InventoryTableProcessors.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/views/HardwareStatus/Inventory/InventoryTableProcessors.vue b/src/views/HardwareStatus/Inventory/InventoryTableProcessors.vue
index fbe58374..7d5dd700 100644
--- a/src/views/HardwareStatus/Inventory/InventoryTableProcessors.vue
+++ b/src/views/HardwareStatus/Inventory/InventoryTableProcessors.vue
@@ -27,6 +27,7 @@
:filter="searchFilter"
:empty-text="$t('global.table.emptyMessage')"
:empty-filtered-text="$t('global.table.emptySearchMessage')"
+ :busy="isBusy"
@filtered="onFiltered"
>
<!-- Expand button -->
@@ -172,6 +173,7 @@ export default {
],
data() {
return {
+ isBusy: true,
fields: [
{
key: 'expandRow',
@@ -224,6 +226,7 @@ export default {
this.$store.dispatch('processors/getProcessorsInfo').finally(() => {
// Emit initial data fetch complete to parent component
this.$root.$emit('hardware-status-processors-complete');
+ this.isBusy = false;
});
},
methods: {