File tree Expand file tree Collapse file tree
packages/content-management/table_list/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,11 +80,7 @@ export function ItemDetails<T extends UserContentCommonSchema>({
8080 data-test-subj = { `${ id } ListingTitleLink-${ item . attributes . title . split ( ' ' ) . join ( '-' ) } ` }
8181 >
8282 < EuiText >
83- < h4 >
84- < EuiHighlight highlightAll search = { escapeRegExp ( searchTerm ) } >
85- { title }
86- </ EuiHighlight >
87- </ h4 >
83+ < h4 > { title } </ h4 >
8884 </ EuiText >
8985 </ EuiLink >
9086 </ RedirectAppLinks >
@@ -96,7 +92,6 @@ export function ItemDetails<T extends UserContentCommonSchema>({
9692 onClickTitle ,
9793 onClickTitleHandler ,
9894 redirectAppLinksCoreStart ,
99- searchTerm ,
10095 title ,
10196 ] ) ;
10297
@@ -107,11 +102,7 @@ export function ItemDetails<T extends UserContentCommonSchema>({
107102 < EuiTitle size = "xs" > { renderTitle ( ) } </ EuiTitle >
108103 { Boolean ( description ) && (
109104 < EuiText size = "s" >
110- < p >
111- < EuiHighlight highlightAll search = { escapeRegExp ( searchTerm ) } >
112- { description ! }
113- </ EuiHighlight >
114- </ p >
105+ < p > { description ! } </ p >
115106 </ EuiText >
116107 ) }
117108 { hasTags && (
You can’t perform that action at this time.
0 commit comments