Skip to content

Commit

Permalink
[Security Solution][Endpoint][Response Actions] Fix expand details tr…
Browse files Browse the repository at this point in the history
…ay (elastic#157896)

## Summary

Fixes the bug when sometimes the expanding tray breaks the page on the
response actions history page/flyout

It doesn't fix the other issues where when a tray is expanded and paging
is used the page breaks.
That is being worked on in elastic/pull/157777

### Checklist

- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios

(cherry picked from commit 8210806)
  • Loading branch information
ashokaditya committed May 16, 2023
1 parent 0c16782 commit 1494917
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export const useGetEndpointActionList = (
return useQuery<ActionListApiResponse, IHttpFetchError<ErrorType>>({
queryKey: ['get-action-list', query],
...options,
keepPreviousData: true,
queryFn: async () => {
return http.get<ActionListApiResponse>(BASE_ENDPOINT_ACTION_ROUTE, {
query: {
Expand Down

0 comments on commit 1494917

Please sign in to comment.