@@ -15,7 +15,6 @@ import {useLocation} from 'sentry/utils/useLocation';
15
15
import useOrganization from 'sentry/utils/useOrganization' ;
16
16
import CellAction , { Actions } from 'sentry/views/discover/table/cellAction' ;
17
17
import type { TableColumn } from 'sentry/views/discover/table/types' ;
18
- import { TableRow } from 'sentry/views/explore/components/table' ;
19
18
import {
20
19
useLogsAnalyticsPageSource ,
21
20
useLogsFields ,
@@ -254,43 +253,41 @@ function LogRowDetails({
254
253
}
255
254
return (
256
255
< DetailsWrapper >
257
- < TableRow >
258
- < LogDetailTableBodyCell colSpan = { fields . length } >
259
- { isPending && < LoadingIndicator /> }
260
- { ! isPending && data && (
261
- < Fragment >
262
- < DetailsContent >
263
- < DetailsBody >
264
- { LogBodyRenderer ( {
265
- item : getLogRowItem ( OurLogKnownFieldKey . MESSAGE , dataRow , meta ) ,
266
- extra : {
267
- highlightTerms,
268
- logColors,
269
- wrapBody : true ,
270
- location,
271
- organization,
272
- } ,
273
- } ) }
274
- </ DetailsBody >
275
- < LogDetailPanelItem >
276
- < LogFieldsTree
277
- attributes = { data . attributes }
278
- hiddenAttributes = { HiddenLogDetailFields }
279
- renderers = { LogAttributesRendererMap }
280
- renderExtra = { {
281
- highlightTerms,
282
- logColors,
283
- location,
284
- organization,
285
- } }
286
- tableResultLogRow = { dataRow }
287
- />
288
- </ LogDetailPanelItem >
289
- </ DetailsContent >
290
- </ Fragment >
291
- ) }
292
- </ LogDetailTableBodyCell >
293
- </ TableRow >
256
+ < LogDetailTableBodyCell colSpan = { fields . length } >
257
+ { isPending && < LoadingIndicator /> }
258
+ { ! isPending && data && (
259
+ < Fragment >
260
+ < DetailsContent >
261
+ < DetailsBody >
262
+ { LogBodyRenderer ( {
263
+ item : getLogRowItem ( OurLogKnownFieldKey . MESSAGE , dataRow , meta ) ,
264
+ extra : {
265
+ highlightTerms,
266
+ logColors,
267
+ wrapBody : true ,
268
+ location,
269
+ organization,
270
+ } ,
271
+ } ) }
272
+ </ DetailsBody >
273
+ < LogDetailPanelItem >
274
+ < LogFieldsTree
275
+ attributes = { data . attributes }
276
+ hiddenAttributes = { HiddenLogDetailFields }
277
+ renderers = { LogAttributesRendererMap }
278
+ renderExtra = { {
279
+ highlightTerms,
280
+ logColors,
281
+ location,
282
+ organization,
283
+ } }
284
+ tableResultLogRow = { dataRow }
285
+ />
286
+ </ LogDetailPanelItem >
287
+ </ DetailsContent >
288
+ </ Fragment >
289
+ ) }
290
+ </ LogDetailTableBodyCell >
294
291
</ DetailsWrapper >
295
292
) ;
296
293
}
0 commit comments