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

@@ -472,6 +472,9 @@ export function shouldOpenMultilineDialog(value) {
if (value?.$bigint) {
return false;
}
if (value?.$decimal) {
return false;
}
if (_isPlainObject(value) || _isArray(value)) {
return true;
}