Add support for PostgreSQL decimal type in filter and grid utilities

This commit is contained in:
Stela Augustinova
2025-12-08 12:52:47 +01:00
parent 2baf975847
commit e67ee4ffdb
4 changed files with 6 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ function isLike(value, test) {
function extractRawValue(value) {
if (value?.$bigint) return value.$bigint;
if (value?.$oid) return value.$oid;
if (value?.$decimal) return value.$decimal;
return value;
}