Merge PR #2796 into 15.0

Signed-off-by pedrobaeza
This commit is contained in:
OCA-git-bot
2024-04-15 14:04:28 +00:00

View File

@@ -12,4 +12,10 @@ patch(PivotRenderer.prototype, "web_pivot_computed_measure.PivotRenderer", {
}
return this._super(...arguments);
},
getFormattedVariation(cell) {
if (Math.abs(cell.value) === Infinity) {
return "-";
}
return this._super(...arguments);
},
});