use null instead of undefined
This commit is contained in:
parent
0c2438373d
commit
0b36048f47
@ -16,9 +16,9 @@ const TX = ref<Transaction>({
|
||||
Memo: "",
|
||||
Amount: 0,
|
||||
Payee: "",
|
||||
PayeeID: undefined,
|
||||
PayeeID: null,
|
||||
Category: "",
|
||||
CategoryID: undefined,
|
||||
CategoryID: null,
|
||||
CategoryGroup: "",
|
||||
GroupID: "",
|
||||
ID: "",
|
||||
|
@ -17,12 +17,12 @@ export interface Transaction {
|
||||
TransferAccount: string;
|
||||
CategoryGroup: string;
|
||||
Category: string;
|
||||
CategoryID: string | undefined;
|
||||
CategoryID: string | null;
|
||||
Memo: string;
|
||||
Status: string;
|
||||
GroupID: string;
|
||||
Payee: string;
|
||||
PayeeID: string | undefined;
|
||||
PayeeID: string | null;
|
||||
Amount: number;
|
||||
Reconciled: boolean;
|
||||
Account: string;
|
||||
|
Loading…
x
Reference in New Issue
Block a user