Move down to only 1 abstract data type with a nully Frequency. Should aid in making the Expense page usable for all 3 data type.

This commit is contained in:
2025-02-21 08:56:50 -07:00
parent 992195b9a0
commit be66f52cbf
11 changed files with 133 additions and 139 deletions
+2 -2
View File
@@ -29,7 +29,7 @@ class DatabaseBackup {
'id': e.id,
'name': e.name,
'cost': e.amount,
'frequency': e.frequency.title,
'frequency': e.frequency!.title,
'description': e.description,
},
],
@@ -39,7 +39,7 @@ class DatabaseBackup {
'id': i.id,
'name': i.name,
'revenue': i.amount,
'frequency': i.frequency.title,
'frequency': i.frequency!.title,
'description': i.description,
},
],