mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[8.x] [Security Solution][Notes] - change order for new flyout notes tab from descending to ascending (oldest notes to the top) to be consistent with timeline notes and cases (#193893) (#194032)
# Backport This will backport the following commits from `main` to `8.x`: - [[Security Solution][Notes] - change order for new flyout notes tab from descending to ascending (oldest notes to the top) to be consistent with timeline notes and cases (#193893)](https://github.com/elastic/kibana/pull/193893) <!--- Backport version: 9.4.3 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Philippe Oberti","email":"philippe.oberti@elastic.co"},"sourceCommit":{"committedDate":"2024-09-25T15:29:13Z","message":"[Security Solution][Notes] - change order for new flyout notes tab from descending to ascending (oldest notes to the top) to be consistent with timeline notes and cases (#193893)","sha":"eaa02578f68ccf90520e64ae08485500d5e30b96","branchLabelMapping":{"^v9.0.0$":"main","^v8.16.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["backport","release_note:skip","v9.0.0","Team:Threat Hunting:Investigations","v8.16.0"],"title":"[Security Solution][Notes] - change order for new flyout notes tab from descending to ascending (oldest notes to the top) to be consistent with timeline notes and cases","number":193893,"url":"https://github.com/elastic/kibana/pull/193893","mergeCommit":{"message":"[Security Solution][Notes] - change order for new flyout notes tab from descending to ascending (oldest notes to the top) to be consistent with timeline notes and cases (#193893)","sha":"eaa02578f68ccf90520e64ae08485500d5e30b96"}},"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/193893","number":193893,"mergeCommit":{"message":"[Security Solution][Notes] - change order for new flyout notes tab from descending to ascending (oldest notes to the top) to be consistent with timeline notes and cases (#193893)","sha":"eaa02578f68ccf90520e64ae08485500d5e30b96"}},{"branch":"8.x","label":"v8.16.0","branchLabelMappingKey":"^v8.16.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT--> Co-authored-by: Philippe Oberti <philippe.oberti@elastic.co>
This commit is contained in:
parent
3d649a88c1
commit
462a1c2102
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ export const NotesList = memo(({ eventId }: NotesListProps) => {
|
|||
const notes: Note[] = useSelector((state: State) =>
|
||||
selectSortedNotesByDocumentId(state, {
|
||||
documentId: eventId,
|
||||
sort: { field: 'created', direction: 'desc' },
|
||||
sort: { field: 'created', direction: 'asc' },
|
||||
})
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue