Fix bug and remove uncessary code and assets

This commit is contained in:
2023-09-29 17:54:17 +07:00
parent 7d06a8e4b3
commit 700fcc004a
8 changed files with 41 additions and 49 deletions
@@ -3,7 +3,7 @@ import Transaction from '../models/transaction';
import * as MESSAGE from '../constants/message';
import { renderRequiredText } from '../helpers/validateForm';
class BudgetView {
export default class BudgetView {
constructor() {
this.budgetDialog = document.getElementById('budgetDialog');
this.addBudgetBtn = document.getElementById('addBudget');
@@ -170,5 +170,3 @@ class BudgetView {
this.addHandlerEventBudgetForm();
}
}
export default new BudgetView();