File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -349,11 +349,17 @@ function LogTable(props) {
349349 // Add dynamic columns
350350 _ . map ( props . extraColumns , ( dotPath ) => {
351351 const elems = dotPath . split ( "." ) ;
352+
353+ let columnClass = "logtable-cell" ;
354+ if ( dotPath . startsWith ( "response." ) ) {
355+ columnClass += " response-column" ;
356+ }
357+
352358 stdColumns . push ( {
353359 Header : elems [ elems . length - 1 ] ,
354360 accessor : dotPath === ".error" ? "error" : dotPath ,
355361 width : columnLargeWidth ,
356- className : "logtable-cell" ,
362+ className : columnClass ,
357363 Cell : ( { cell } ) => {
358364 const value = cell . value ;
359365 if ( value === undefined || value === null ) return null ;
Original file line number Diff line number Diff line change @@ -94,6 +94,10 @@ html {
9494 text-overflow : clip;
9595}
9696
97+ /* logtable for response fields */
98+ .response-column {
99+ background-color : rgba (255 , 0 , 0 , 0.05 );
100+ }
97101/* Event indicator styles */
98102.selected-event-indicator-container {
99103 position : relative;
You can’t perform that action at this time.
0 commit comments