Skip to content

Commit

Permalink
[Security assistant] Fix AlertsRange for Assistant (elastic#196582)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephmilovic authored Oct 16, 2024
1 parent 2eff6d1 commit 6438520
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import { KnowledgeBaseConfig } from '../../types';
import { AlertsRange } from '../../../knowledge_base/alerts_range';
import * as i18n from '../../../knowledge_base/translations';

export const MIN_LATEST_ALERTS = 10;
export const MAX_LATEST_ALERTS = 100;
export const TICK_INTERVAL = 10;
export const MIN_LATEST_ALERTS = 50;
export const MAX_LATEST_ALERTS = 500;
export const TICK_INTERVAL = 50;
export const RANGE_CONTAINER_WIDTH = 600; // px
const LABEL_WRAPPER_MIN_WIDTH = 95; // px

Expand Down

0 comments on commit 6438520

Please sign in to comment.