Skip to content

Commit fb08985

Browse files
committed
Merge PR #3397 into 16.0
Signed-off-by tarteo
2 parents bda2c98 + d2b3dc4 commit fb08985

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web_group_by_percentage/static/src/js/backend.esm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ patch(ListRenderer.prototype, "list_group_by_percentage", {
1818

1919
if (list.isGrouped) {
2020
for (var column of columns) {
21-
if (!this.isNumericColumn(column)) continue;
21+
if (column.type != "field" || !this.isNumericColumn(column)) continue;
2222

2323
column.totalSum = 0;
2424
for (var group of list.groups) {

0 commit comments

Comments
 (0)