batch adding transaction tags in import transaction tool

This commit is contained in:
MaysWind
2025-09-13 23:05:26 +08:00
parent 422cf49517
commit e463c2dc95
15 changed files with 95 additions and 9 deletions
+2 -2
View File
@@ -42,8 +42,8 @@ export class ImportTransaction implements ImportTransactionResponse {
this.originalDestinationAccountCurrency = response.originalDestinationAccountCurrency;
this.sourceAmount = response.sourceAmount;
this.destinationAmount = response.destinationAmount || 0;
this.tagIds = response.tagIds;
this.originalTagNames = response.originalTagNames;
this.tagIds = response.tagIds || [];
this.originalTagNames = response.originalTagNames || [];
this.comment = response.comment;
this.geoLocation = response.geoLocation;