diff --git a/web_group_by_percentage/static/src/js/backend.esm.js b/web_group_by_percentage/static/src/js/backend.esm.js index 8544b96d8d66..2268e8b15cd8 100644 --- a/web_group_by_percentage/static/src/js/backend.esm.js +++ b/web_group_by_percentage/static/src/js/backend.esm.js @@ -18,7 +18,7 @@ patch(ListRenderer.prototype, "list_group_by_percentage", { if (list.isGrouped) { for (var column of columns) { - if (!this.isNumericColumn(column)) continue; + if (column.type != "field" || !this.isNumericColumn(column)) continue; column.totalSum = 0; for (var group of list.groups) {