mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
# Backport This will backport the following commits from `main` to `8.x`: - [[Security assistant] Fix `AlertsRange` for Assistant (#196582)](https://github.com/elastic/kibana/pull/196582) <!--- Backport version: 9.4.3 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Steph Milovic","email":"stephanie.milovic@elastic.co"},"sourceCommit":{"committedDate":"2024-10-16T18:31:32Z","message":"[Security assistant] Fix `AlertsRange` for Assistant (#196582)","sha":"6438520c6522263bd38bf68606cf36fce4ce9697","branchLabelMapping":{"^v9.0.0$":"main","^v8.16.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","v9.0.0","Team: SecuritySolution","backport:prev-minor","Team:Security Generative AI","v8.16.0"],"title":"[Security assistant] Fix `AlertsRange` for Assistant","number":196582,"url":"https://github.com/elastic/kibana/pull/196582","mergeCommit":{"message":"[Security assistant] Fix `AlertsRange` for Assistant (#196582)","sha":"6438520c6522263bd38bf68606cf36fce4ce9697"}},"sourceBranch":"main","suggestedTargetBranches":["8.x"],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/196582","number":196582,"mergeCommit":{"message":"[Security assistant] Fix `AlertsRange` for Assistant (#196582)","sha":"6438520c6522263bd38bf68606cf36fce4ce9697"}},{"branch":"8.x","label":"v8.16.0","branchLabelMappingKey":"^v8.16.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT--> Co-authored-by: Steph Milovic <stephanie.milovic@elastic.co>
This commit is contained in:
parent
fd658fbcbd
commit
a9b526a3ad
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue