File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
src/Elastic.Documentation.Site/Assets
web-components/SearchOrAskAi Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ import { icon as EuiIconSparkles } from '@elastic/eui/es/components/icon/assets/
1616import { icon as EuiIconTrash } from '@elastic/eui/es/components/icon/assets/trash'
1717import { icon as EuiIconUser } from '@elastic/eui/es/components/icon/assets/user'
1818import { icon as EuiIconWrench } from '@elastic/eui/es/components/icon/assets/wrench'
19+ import { icon as EuiIconThumbUp } from '@elastic/eui/es/components/icon/assets/thumbUp'
20+ import { icon as EuiIconThumbDown } from '@elastic/eui/es/components/icon/assets/thumbDown'
1921import { appendIconComponentCache } from '@elastic/eui/es/components/icon/icon'
2022
2123appendIconComponentCache ( {
@@ -37,4 +39,6 @@ appendIconComponentCache({
3739 faceSad : EuiIconFaceSad ,
3840 refresh : EuiIconRefresh ,
3941 error : EuiIconError ,
42+ thumbUp : EuiIconThumbUp ,
43+ thumbDown : EuiIconThumbDown ,
4044} )
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ export const AskAiAnswer = () => {
117117 < EuiToolTip content = "This answer was helpful" >
118118 < EuiButtonIcon
119119 aria-label = "This answer was helpful"
120- iconType = "faceHappy "
120+ iconType = "thumbUp "
121121 color = "success"
122122 />
123123 </ EuiToolTip >
@@ -126,7 +126,7 @@ export const AskAiAnswer = () => {
126126 < EuiToolTip content = "This answer was not helpful" >
127127 < EuiButtonIcon
128128 aria-label = "This answer was not helpful"
129- iconType = "faceSad "
129+ iconType = "thumbDown "
130130 color = "danger"
131131 />
132132 </ EuiToolTip >
Original file line number Diff line number Diff line change @@ -59,7 +59,8 @@ export const SearchOrAskAiModal = () => {
5959 suggestions = { [
6060 { question : 'What is an index template?' } ,
6161 { question : 'What is semantic search?' } ,
62- { question : 'How do I create an index?' } ,
62+ { question : 'How do I create an elasticsearch index?' } ,
63+ { question : 'How do I set up an ingest pipeline?' } ,
6364 ] }
6465 />
6566 ) }
You can’t perform that action at this time.
0 commit comments