Skip to content

Commit

Permalink
Merge pull request #532 from grafana/line-limit-field-pattern
Browse files Browse the repository at this point in the history
Reduce line limit used for field in patterns to 1k
  • Loading branch information
cyriltovena authored Jul 9, 2024
2 parents 53f9e59 + 6b28ac3 commit 77594cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface PatternNameLabelProps {
pattern: string;
}

const LINE_LIMIT = 2000;
const LINE_LIMIT = 1000;

export const PatternNameLabel = ({ exploration, pattern }: PatternNameLabelProps) => {
const patternIndices = extractPatternIndices(pattern);
Expand Down

0 comments on commit 77594cc

Please sign in to comment.