Skip to content

Commit

Permalink
[Security Solution][Notes] - change order for new flyout notes tab fr…
Browse files Browse the repository at this point in the history
…om descending to ascending (oldest notes to the top) to be consistent with timeline notes and cases (elastic#193893)
  • Loading branch information
PhilippeOberti committed Sep 25, 2024
1 parent 5d51da9 commit eaa0257
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,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' },
})
);

Expand Down

0 comments on commit eaa0257

Please sign in to comment.