We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7863a4 commit 97ecc79Copy full SHA for 97ecc79
adminforth/dataConnectors/mongo.ts
@@ -194,7 +194,7 @@ class MongoConnector extends AdminForthBaseConnector implements IAdminForthDataS
194
if (!value) {
195
return null;
196
}
197
- return dayjs(value).toDate();
+ return dayjs(value).toDate();
198
199
} else if (field.type == AdminForthDataTypes.BOOLEAN) {
200
return value === null ? null : (value ? true : false);
0 commit comments