Skip to content

Commit

Permalink
fix: firefly-iii build error
Browse files Browse the repository at this point in the history
  • Loading branch information
diogotcorreia committed Feb 19, 2025
1 parent 05a045f commit a97ba7b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
diff --git a/resources/assets/v1/src/components/transactions/EditTransaction.vue b/resources/assets/v1/src/components/transactions/EditTransaction.vue
index ed39dc47f0..edc6670930 100644
index 97fbf78f41..20232584f6 100644
--- a/resources/assets/v1/src/components/transactions/EditTransaction.vue
+++ b/resources/assets/v1/src/components/transactions/EditTransaction.vue
@@ -454,7 +454,7 @@ export default {
@@ -470,7 +470,7 @@ export default {
let result = {
transaction_journal_id: transaction.transaction_journal_id,
description: transaction.description,
- date: transaction.date.substring(0, 16),
+ date: transaction.date.substring(0, 19),
reconciled: transaction.reconciled,
amount: this.roundNumber(this.positiveAmount(transaction.amount), transaction.currency_decimal_places),
category: transaction.category_name,
errors: {

0 comments on commit a97ba7b

Please sign in to comment.