From c7994b8282aa13fce3f666fe8a176be7f22f8da5 Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Sun, 28 Jun 2026 13:47:52 -0400 Subject: [PATCH] Removed old unused tag form properties from editor page. --- .../src/pages/transaction-editor/EditTransactionPage.vue | 6 ------ 1 file changed, 6 deletions(-) diff --git a/web-app/src/pages/transaction-editor/EditTransactionPage.vue b/web-app/src/pages/transaction-editor/EditTransactionPage.vue index 8678950..8b29697 100644 --- a/web-app/src/pages/transaction-editor/EditTransactionPage.vue +++ b/web-app/src/pages/transaction-editor/EditTransactionPage.vue @@ -146,15 +146,9 @@ const creditedAccountId: Ref = ref(null) const debitedAccountId: Ref = ref(null) const lineItems: Ref = ref([]) const tags: Ref = ref([]) -const customTagInput = ref('') -const customTagInputValid = ref(false) const attachmentsToUpload: Ref = ref([]) const removedAttachmentIds: Ref = ref([]) -watch(customTagInput, (newValue: string) => { - const result = newValue.match('^[a-z0-9-_]{3,32}$') - customTagInputValid.value = result !== null && result.length > 0 -}) watch(availableCurrencies, (newValue: Currency[]) => { if (newValue.length === 1) { currency.value = newValue[0]