@cdmx/wappler_ag_grid 1.5.8 → 1.5.9

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