File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed
packages/content-management/table_list/src/components Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -80,11 +80,7 @@ export function ItemDetails<T extends UserContentCommonSchema>({
80
80
data-test-subj = { `${ id } ListingTitleLink-${ item . attributes . title . split ( ' ' ) . join ( '-' ) } ` }
81
81
>
82
82
< EuiText >
83
- < h4 >
84
- < EuiHighlight highlightAll search = { escapeRegExp ( searchTerm ) } >
85
- { title }
86
- </ EuiHighlight >
87
- </ h4 >
83
+ < h4 > { title } </ h4 >
88
84
</ EuiText >
89
85
</ EuiLink >
90
86
</ RedirectAppLinks >
@@ -96,7 +92,6 @@ export function ItemDetails<T extends UserContentCommonSchema>({
96
92
onClickTitle ,
97
93
onClickTitleHandler ,
98
94
redirectAppLinksCoreStart ,
99
- searchTerm ,
100
95
title ,
101
96
] ) ;
102
97
@@ -107,11 +102,7 @@ export function ItemDetails<T extends UserContentCommonSchema>({
107
102
< EuiTitle size = "xs" > { renderTitle ( ) } </ EuiTitle >
108
103
{ Boolean ( description ) && (
109
104
< EuiText size = "s" >
110
- < p >
111
- < EuiHighlight highlightAll search = { escapeRegExp ( searchTerm ) } >
112
- { description ! }
113
- </ EuiHighlight >
114
- </ p >
105
+ < p > { description ! } </ p >
115
106
</ EuiText >
116
107
) }
117
108
{ hasTags && (
You can’t perform that action at this time.
0 commit comments