@gridsuite/commons-ui 0.234.0 → 0.235.0

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.
@@ -127,7 +127,7 @@ const handlePostSortRows = (isFromContingency) => (params) => {
127
127
  }
128
128
  });
129
129
  agGridRows.forEach((row) => {
130
- if (isContingency && !row.data.linkedElementId && !row.data[idField]) {
130
+ if (isContingency && row.data.linkedElementId == null && !row.data[idField]) {
131
131
  mappedRows.get("contingencies").push(row);
132
132
  } else if (row.data[idField] == null) {
133
133
  const group = mappedRows.get(row.data.linkedElementId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gridsuite/commons-ui",
3
- "version": "0.234.0",
3
+ "version": "0.235.0",
4
4
  "description": "common react components for gridsuite applications",
5
5
  "author": "gridsuite team",
6
6
  "homepage": "https://github.com/gridsuite",
@@ -31,6 +31,7 @@
31
31
  ],
32
32
  "scripts": {
33
33
  "start": "vite demo/ --config vite.config.ts",
34
+ "start:checks": "VITE_CHECKER_ENABLED=true vite demo/ --config vite.config.ts",
34
35
  "start:open": "vite demo/ --config vite.config.ts --open",
35
36
  "build": "vite build",
36
37
  "build:pack": "tsc && vite build && npm pack",