@cdmx/wappler_ag_grid 1.4.2 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dmx-ag-grid.js +3 -0
- package/package.json +1 -1
package/dmx-ag-grid.js
CHANGED
|
@@ -722,6 +722,9 @@ dmx.Component('ag-grid', {
|
|
|
722
722
|
}
|
|
723
723
|
// comparator for case-insensitive sorting
|
|
724
724
|
const caseInsensitiveComparator = (valueA, valueB) => {
|
|
725
|
+
if (!valueA) {
|
|
726
|
+
return valueB ? -1 : 0;
|
|
727
|
+
}
|
|
725
728
|
return valueA.toLowerCase().localeCompare(valueB.toLowerCase())
|
|
726
729
|
}
|
|
727
730
|
dateFilterParams = {
|