mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	Fix #3363
This commit is contained in:
		| @@ -475,7 +475,7 @@ | ||||
|                 // if count is 0, send user onwards. | ||||
|                 if (this.createAnother) { | ||||
|                     // do message: | ||||
|                     this.success_message = '<a href="transactions/show/' + groupId + '">Transaction #' + groupId + ' ("' + this.escapeHTML(title) + '")</a> has been stored.'; | ||||
|                     this.success_message = this.$t('firefly.transaction_stored_link', { ID: groupId }); | ||||
|                     this.error_message = ''; | ||||
|                     if (this.resetFormAfter) { | ||||
|                         // also clear form. | ||||
|   | ||||
| @@ -656,10 +656,10 @@ | ||||
|                     this.setDefaultErrors(); | ||||
|                     // do message if update or new: | ||||
|                     if (this.storeAsNew) { | ||||
|                         this.success_message = '<a href="transactions/show/' + groupId + '">Transaction #' + groupId + '</a> has been created.'; | ||||
|                         this.success_message = this.$t('firefly.transaction_stored_link', { ID: groupId }); | ||||
|                         this.error_message = ''; | ||||
|                     } else { | ||||
|                         this.success_message = '<a href="transactions/show/' + groupId + '">The transaction</a> has been updated.'; | ||||
|                         this.success_message = this.$t('firefly.transaction_updated_link', { ID: groupId }); | ||||
|                         this.error_message = ''; | ||||
|                     } | ||||
|                 } else { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user