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 3e6e135 commit a9c1355Copy full SHA for a9c1355
adminforth/dataConnectors/mongo.ts
@@ -108,6 +108,8 @@ class MongoConnector extends AdminForthBaseConnector implements IAdminForthDataS
108
}
109
} else if (field.type == AdminForthDataTypes.BOOLEAN) {
110
return value ? true : false;
111
+ } else if (field.type == AdminForthDataTypes.DECIMAL) {
112
+ return value?.toString();
113
114
return value;
115
0 commit comments