mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-17 08:14:25 +08:00
modify method name
This commit is contained in:
@@ -209,7 +209,7 @@ function init(): void {
|
||||
transactionCategoriesStore.getCategory({
|
||||
categoryId: editCategoryId.value
|
||||
}).then(response => {
|
||||
category.value.from(response);
|
||||
category.value.fillFrom(response);
|
||||
loading.value = false;
|
||||
}).catch(error => {
|
||||
if (error.processed) {
|
||||
|
||||
@@ -955,7 +955,7 @@ function init(): void {
|
||||
transaction.value = TransactionTemplate.createNewTransactionTemplate(transaction.value);
|
||||
}
|
||||
|
||||
(transaction.value as TransactionTemplate).from(template);
|
||||
(transaction.value as TransactionTemplate).fillFrom(template);
|
||||
}
|
||||
|
||||
loading.value = false;
|
||||
|
||||
Reference in New Issue
Block a user