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
  • Loading branch information
PhilippeOberti committed Sep 24, 2024
1 parent dcff283 commit 4ec56bb
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 4ec56bb

Please sign in to comment.