From 9727fca82495d9918fafaed9a64ab5b10c547c7b Mon Sep 17 00:00:00 2001 From: Mahmoud Emad Date: Tue, 4 Jun 2024 09:46:43 +0300 Subject: [PATCH] fix: Fix deleting contracts loading: - Removed unused variable named 'loadingDelete'. - Used the 'deleting' attr when deleting contacts to indicate the loader component. --- .../src/components/contracts_list/contracts_table.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/playground/src/components/contracts_list/contracts_table.vue b/packages/playground/src/components/contracts_list/contracts_table.vue index cfaa87a5aa..28a96cf0d3 100644 --- a/packages/playground/src/components/contracts_list/contracts_table.vue +++ b/packages/playground/src/components/contracts_list/contracts_table.vue @@ -3,7 +3,7 @@ Export @@ -131,7 +131,8 @@ @@ -366,7 +367,6 @@ const layout = ref(); const contractLocked = ref(); const deleting = ref(false); const loadingShowDetails = ref(false); -const loadingDelete = ref(false); const contractStateDialog = ref(false); const isExporting = ref(false); const deletingDialog = ref(false);