File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
packages/component/src/Activity/private Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 33 < head >
44 < link href ="/assets/index.css " rel ="stylesheet " type ="text/css " />
55 < script crossorigin ="anonymous " src ="https://unpkg.com/@babel/standalone@7.8.7/babel.min.js "> </ script >
6- < script crossorigin ="anonymous " src ="https://unpkg.com/react@16.8.6/umd/react.development .js "> </ script >
7- < script crossorigin ="anonymous " src ="https://unpkg.com/react-dom@16.8.6/umd/react-dom.development .js "> </ script >
6+ < script crossorigin ="anonymous " src ="https://unpkg.com/react@16.8.6/umd/react.production.min .js "> </ script >
7+ < script crossorigin ="anonymous " src ="https://unpkg.com/react-dom@16.8.6/umd/react-dom.production.min .js "> </ script >
88 < script crossorigin ="anonymous " src ="/test-harness.js "> </ script >
99 < script crossorigin ="anonymous " src ="/test-page-object.js "> </ script >
1010 < script crossorigin ="anonymous " src ="/__dist__/webchat-es5.js "> </ script >
Original file line number Diff line number Diff line change @@ -4,17 +4,13 @@ import useStyleSet from '../../hooks/useStyleSet';
44import classNames from 'classnames' ;
55import testIds from '../../testIds' ;
66import TextArea from './FeedbackTextArea' ;
7- import withEmoji from '../../withEmoji/withEmoji' ;
8-
97const { useLocalizer, usePostActivity } = hooks ;
108
119const FeedbackOptions = {
1210 LikeAction : 'like' ,
1311 DislikeAction : 'dislike'
1412} as const ;
1513
16- const MultiLineTextBox = withEmoji ( TextArea ) ;
17-
1814function FeedbackForm ( {
1915 feedbackType,
2016 disclaimer,
@@ -81,7 +77,7 @@ function FeedbackForm({
8177 { localize ( 'FEEDBACK_FORM_TITLE' ) }
8278 </ span >
8379 < form className = { classNames ( 'webchat__feedback-form' , feedbackForm + '' ) } onSubmit = { handleSubmit } >
84- < MultiLineTextBox
80+ < TextArea
8581 data-testid = { testIds . feedbackSendBox }
8682 onInput = { handleChange }
8783 placeholder = { localize ( 'FEEDBACK_FORM_PLACEHOLDER' ) }
You can’t perform that action at this time.
0 commit comments