File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
x-pack/plugins/security_solution/public/management/pages/policy/view Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export const AgentsSummary = memo<AgentsSummaryProps>((props) => {
7373 } , [ ] ) ;
7474
7575 return (
76- < EuiFlexGroup gutterSize = "xl" data-test-subj = "policyAgentsSummary" >
76+ < EuiFlexGroup gutterSize = "xl" responsive = { false } data-test-subj = "policyAgentsSummary" >
7777 { stats . map ( ( { key, title, health } ) => {
7878 return (
7979 < EuiFlexItem grow = { false } key = { key } >
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import {
1616 EuiConfirmModal ,
1717 EuiCallOut ,
1818 EuiLoadingSpinner ,
19+ EuiHideFor ,
1920} from '@elastic/eui' ;
2021import { FormattedMessage } from '@kbn/i18n/react' ;
2122import { i18n } from '@kbn/i18n' ;
@@ -182,9 +183,11 @@ export const PolicyDetails = React.memo(() => {
182183 error = { policyAgentStatusSummary ?. error ?? 0 }
183184 />
184185 </ EuiFlexItem >
185- < EuiFlexItem >
186- < VerticalDivider spacing = "l" />
187- </ EuiFlexItem >
186+ < EuiHideFor sizes = { [ 'xs' , 's' ] } >
187+ < EuiFlexItem >
188+ < VerticalDivider spacing = "l" />
189+ </ EuiFlexItem >
190+ </ EuiHideFor >
188191 < EuiFlexItem grow = { false } >
189192 < EuiButtonEmpty onClick = { handleCancelOnClick } data-test-subj = "policyDetailsCancelButton" >
190193 < FormattedMessage
You can’t perform that action at this time.
0 commit comments