From 179c670b0bafd1221da762a4c8694eed689a3a51 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Mon, 13 Nov 2023 18:19:55 +0530 Subject: [PATCH] chore: code formatting --- frontend/src/components/Controls/Link.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/Controls/Link.vue b/frontend/src/components/Controls/Link.vue index b7644286..b96aba9f 100644 --- a/frontend/src/components/Controls/Link.vue +++ b/frontend/src/components/Controls/Link.vue @@ -39,10 +39,8 @@ const valuePropPassed = computed(() => 'value' in attrs) const value = computed({ get: () => (valuePropPassed.value ? attrs.value : props.modelValue), - set: (val) => { - debugger - return emit(valuePropPassed.value ? 'change' : 'update:modelValue', val?.value) - } + set: (val) => + emit(valuePropPassed.value ? 'change' : 'update:modelValue', val?.value), }) const autocomplete = ref(null)