Skip to content

Commit

Permalink
[8.15] [Security Solution][Notes] - fix item per page wrong order in …
Browse files Browse the repository at this point in the history
…popover (elastic#187967) (elastic#188057)

# Backport

This will backport the following commits from `main` to `8.15`:
- [[Security Solution][Notes] - fix item per page wrong order in popover
(elastic#187967)](elastic#187967)

<!--- Backport version: 9.4.3 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Philippe
Oberti","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-07-11T08:24:10Z","message":"[Security
Solution][Notes] - fix item per page wrong order in popover
(elastic#187967)","sha":"189fc763f524db771303fa9fac54ad9399c2a52b","branchLabelMapping":{"^v8.16.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","Team:Threat
Hunting:Investigations","v8.15.0","v8.16.0"],"title":"[Security
Solution][Notes] - fix item per page wrong order in
popover","number":187967,"url":"https://github.com/elastic/kibana/pull/187967","mergeCommit":{"message":"[Security
Solution][Notes] - fix item per page wrong order in popover
(elastic#187967)","sha":"189fc763f524db771303fa9fac54ad9399c2a52b"}},"sourceBranch":"main","suggestedTargetBranches":["8.15"],"targetPullRequestStates":[{"branch":"8.15","label":"v8.15.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.16.0","branchLabelMappingKey":"^v8.16.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/187967","number":187967,"mergeCommit":{"message":"[Security
Solution][Notes] - fix item per page wrong order in popover
(elastic#187967)","sha":"189fc763f524db771303fa9fac54ad9399c2a52b"}}]}]
BACKPORT-->

Co-authored-by: Philippe Oberti <[email protected]>
  • Loading branch information
kibanamachine and PhilippeOberti authored Jul 11, 2024
1 parent 216aa79 commit 85e3486
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,6 @@ export const DELETE_SINGLE_NOTE_DESCRIPTION = i18n.translate(
}
);

export const NOTES_MANAGEMENT_TITLE = i18n.translate(
'xpack.securitySolution.notes.management.pageTitle',
{
defaultMessage: 'Notes management',
}
);

export const TABLE_ERROR = i18n.translate('xpack.securitySolution.notes.management.tableError', {
defaultMessage: 'Unable to load notes',
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const columns: (
];
};

const pageSizeOptions = [50, 25, 10, 0];
const pageSizeOptions = [10, 25, 50, 100];

/**
* Allows user to search and delete notes.
Expand Down

0 comments on commit 85e3486

Please sign in to comment.