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]