@cdmx/wappler_ag_grid 0.7.6 → 0.7.7
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/README.md +1 -1
- package/dmx-ag-grid.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
#### Developed and Maintained by: Roney Dsilva
|
|
2
2
|
# AG Grid Module Documentation
|
|
3
3
|
|
|
4
4
|
The AG Grid module allows you to create a flexible and customizable data grid with various options and properties. Below, you'll find the list of properties and options available for configuring the AG Grid module:
|
package/dmx-ag-grid.js
CHANGED
|
@@ -411,7 +411,7 @@ dmx.Component('ag-grid', {
|
|
|
411
411
|
let hasText = false;
|
|
412
412
|
|
|
413
413
|
for (const value of values) {
|
|
414
|
-
if (value === null || value === undefined || value === '') {
|
|
414
|
+
if (value === null || value === undefined || value === '' || typeof value === "boolean") {
|
|
415
415
|
hasText = true;
|
|
416
416
|
} else if (!isNaN(Number(value)) && !(typeof value === "string")) {
|
|
417
417
|
hasNumber = true;
|