diff --git a/src/views/mobile/transactions/Edit.vue b/src/views/mobile/transactions/Edit.vue index 8129d44b..a85572cc 100644 --- a/src/views/mobile/transactions/Edit.vue +++ b/src/views/mobile/transactions/Edit.vue @@ -482,7 +482,9 @@ export default { this.transaction.time = newValue; } - this.transaction.unixTime = this.$utilities.getUnixTime(newValue); + if (this.$utilities.formatUnixTime(this.transaction.unixTime, 'YYYY-MM-DDTHH:mm') !== newValue) { + this.transaction.unixTime = this.$utilities.getUnixTime(newValue); + } } }, created() {