1
0
Эх сурвалжийг харах

aggregate in a table that contains date column (#2114)

resolves #1994

Co-authored-by: Fred Lefévère-Laoide <Fred.Lefevere-Laoide@Taipy.io>
Fred Lefévère-Laoide 7 сар өмнө
parent
commit
6d3cebce44

+ 1 - 1
frontend/taipy-gui/base/src/packaging/package.json

@@ -1,6 +1,6 @@
 {
   "name": "taipy-gui-base",
-  "version": "4.0.0",
+  "version": "4.1.0",
   "private": true,
   "main": "./taipy-gui-base.js",
   "types": "./taipy-gui-base.d.ts"

+ 1 - 1
frontend/taipy-gui/dom/package.json

@@ -1,6 +1,6 @@
 {
   "name": "taipy-gui-dom",
-  "version": "4.0.0",
+  "version": "4.1.0",
   "private": true,
   "dependencies": {
     "react": "^18.2.0",

+ 1 - 1
frontend/taipy-gui/package.json

@@ -1,6 +1,6 @@
 {
   "name": "taipy-gui",
-  "version": "4.0.0",
+  "version": "4.1.0",
   "private": true,
   "dependencies": {
     "@emotion/react": "^11.10.0",

+ 1 - 1
frontend/taipy-gui/packaging/package.json

@@ -1,6 +1,6 @@
 {
   "name": "taipy-gui",
-  "version": "4.0.0",
+  "version": "4.1.0",
   "private": true,
   "main": "./taipy-gui.js",
   "types": "./taipy-gui.d.ts"

+ 1 - 1
frontend/taipy-gui/src/components/Taipy/tableUtils.tsx

@@ -304,7 +304,7 @@ export const getPageKey = (
         order,
         aggregates?.length
             ? cols.reduce((pv, col, idx) => {
-                  if (aggregates.includes(columns[col].dfid)) {
+                  if (aggregates.includes(col)) {
                       return `${pv}${idx}`;
                   }
                   return pv;

+ 1 - 1
frontend/taipy/package.json

@@ -1,6 +1,6 @@
 {
   "name": "taipy-gui-core",
-  "version": "4.0.0",
+  "version": "4.1.0",
   "private": true,
   "devDependencies": {
     "@testing-library/jest-dom": "^6.5.0",