From 49178f5321f92b55e6481a6b2f83f458c2ae1e40 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Mon, 20 May 2024 21:18:51 +0530 Subject: [PATCH] fix: removed unused model --- frontend/src/components/Modals/EditValueModal.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/components/Modals/EditValueModal.vue b/frontend/src/components/Modals/EditValueModal.vue index 3d918d96..0a9e2851 100644 --- a/frontend/src/components/Modals/EditValueModal.vue +++ b/frontend/src/components/Modals/EditValueModal.vue @@ -59,7 +59,6 @@ const props = defineProps({ }) const show = defineModel() -const unselectAll = defineModel('unselectAll') const emit = defineEmits(['reload']) @@ -114,7 +113,6 @@ function updateValues() { newValue.value = '' loading.value = false show.value = false - unselectAll.value() emit('reload') }) }