We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c3c930 commit 1ba495bCopy full SHA for 1ba495b
adminforth/dataConnectors/mongo.ts
@@ -97,7 +97,7 @@ class MongoConnector extends AdminForthBaseConnector implements IAdminForthDataS
97
if (
98
value &&
99
typeof value === 'object' &&
100
- ('$numberDecimal' in value || value._bsontype === 'Decimal128')
+ ('$numberDecimal' in value || (value as any)._bsontype === 'Decimal128')
101
) {
102
addType(fullKey, 'decimal');
103
return;
0 commit comments