From cc682485fc05153ce7152bc9efce8e1c64342511 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 1 May 2021 17:59:36 +0200 Subject: [PATCH] Fix #4730 --- frontend/src/components/transactions/Edit.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/components/transactions/Edit.vue b/frontend/src/components/transactions/Edit.vue index 779cee7ebb..706032e9d8 100644 --- a/frontend/src/components/transactions/Edit.vue +++ b/frontend/src/components/transactions/Edit.vue @@ -650,6 +650,10 @@ export default { if (typeof currentTransaction.selectedAttachments !== 'undefined' && true === currentTransaction.selectedAttachments) { shouldUpload = true; } + if(true === shouldSubmit) { + // set the date to whatever the date is: + diff.date = this.date; + } if (this.date !== this.originalDate) { shouldSubmit = true;