@cdmx/wappler_ag_grid 1.5.10 → 1.5.11

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.
Files changed (2) hide show
  1. package/dmx-ag-grid.js +2 -2
  2. package/package.json +1 -1
package/dmx-ag-grid.js CHANGED
@@ -620,9 +620,9 @@ dmx.Component('ag-grid', {
620
620
 
621
621
  for (let i = 0; i < operators.length; i++) {
622
622
  if (operators[i] === '||') {
623
- finalResult = finalResult || results[i];
623
+ finalResult = finalResult || results[i + 1];
624
624
  } else if (operators[i] === '&&') {
625
- finalResult = finalResult && results[i];
625
+ finalResult = finalResult && results[i + 1];
626
626
  }
627
627
  }
628
628
  return finalResult;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cdmx/wappler_ag_grid",
3
- "version": "1.5.10",
3
+ "version": "1.5.11",
4
4
  "type": "module",
5
5
  "description": "App Connect module for AG Grid Table Generation.",
6
6
  "license": "MIT",