File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
x-pack/legacy/plugins/infra/public/pages/logs/analysis/sections/anomalies Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import { TimeRange } from '../../../../../../common/http_api/shared/time_range';
1212import { GetLogEntryRateSuccessResponsePayload } from '../../../../../../common/http_api/log_analysis/results/log_entry_rate' ;
1313import { AnomaliesTableExpandedRow } from './expanded_row' ;
1414import { getTopAnomalyScoresByPartition , formatAnomalyScore } from '../helpers/data_formatters' ;
15+ import euiStyled from '../../../../../../../../common/eui_styled_components' ;
1516
1617interface TableItem {
1718 id : string ;
@@ -151,7 +152,7 @@ export const AnomaliesTable: React.FunctionComponent<{
151152 ] ;
152153
153154 return (
154- < EuiBasicTable
155+ < StyledEuiBasicTable
155156 items = { sortedTableItems }
156157 itemId = "id"
157158 itemIdToExpandedRowMap = { itemIdToExpandedRowMap }
@@ -163,3 +164,9 @@ export const AnomaliesTable: React.FunctionComponent<{
163164 />
164165 ) ;
165166} ;
167+
168+ const StyledEuiBasicTable = euiStyled ( EuiBasicTable ) `
169+ & .euiTable {
170+ table-layout: auto;
171+ }
172+ ` ;
You can’t perform that action at this time.
0 commit comments