We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bda2c98 + d2b3dc4 commit fb08985Copy full SHA for fb08985
1 file changed
web_group_by_percentage/static/src/js/backend.esm.js
@@ -18,7 +18,7 @@ patch(ListRenderer.prototype, "list_group_by_percentage", {
18
19
if (list.isGrouped) {
20
for (var column of columns) {
21
- if (!this.isNumericColumn(column)) continue;
+ if (column.type != "field" || !this.isNumericColumn(column)) continue;
22
23
column.totalSum = 0;
24
for (var group of list.groups) {
0 commit comments