Skip to content

Commit

Permalink
fix: bump pivot limit
Browse files Browse the repository at this point in the history
  • Loading branch information
mindspank committed Sep 27, 2024
1 parent d2b311c commit e119b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-common/src/features/dashboards/pivot/pivot-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ export function canEnablePivotComparison(
comparisonStart: string | Date | undefined,
) {
// Disable if more than 5 measures
if (pivotState.columns.measure.length >= 5) {
if (pivotState.columns.measure.length > 10) {
return false;
}
// Disable if time comparison is not present
Expand Down

0 comments on commit e119b11

Please sign in to comment.