We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3857f58 commit 0c0ec73Copy full SHA for 0c0ec73
1 file changed
src/components/ImportColumn.tsx
@@ -103,6 +103,19 @@ function findColumnName(header: string): string {
103
attribute = CONST.CSV_IMPORT_COLUMNS.CURRENCY;
104
break;
105
106
+ case 'date':
107
+ case 'transactiondate':
108
+ case 'transaction_date':
109
+ attribute = 'date';
110
+ break;
111
+
112
+ case 'merchant':
113
+ case 'merchants':
114
+ case 'vendor':
115
+ case 'vendors':
116
+ attribute = 'merchant';
117
118
119
case 'rateid':
120
attribute = CONST.CSV_IMPORT_COLUMNS.RATE_ID;
121
0 commit comments