mirror of https://gitee.com/answerdev/answer.git
fix: #957
This commit is contained in:
parent
c746b371a7
commit
23b797c1f9
|
@ -383,6 +383,16 @@ const Ask = () => {
|
|||
value={formData.answer.value}
|
||||
onChange={handleAnswerChange}
|
||||
ref={editorRef2}
|
||||
className={classNames(
|
||||
'form-control p-0',
|
||||
focusType === 'answer' && 'focus',
|
||||
)}
|
||||
onFocus={() => {
|
||||
setForceType('answer');
|
||||
}}
|
||||
onBlur={() => {
|
||||
setForceType('');
|
||||
}}
|
||||
/>
|
||||
<Form.Control
|
||||
value={formData.answer.value}
|
||||
|
|
Loading…
Reference in New Issue