-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05a045f
commit a97ba7b
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
overlays/firefly-iii/0001-allow-seconds-in-transaction-date.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: { |