소스 검색

fixed always refreshing tinymce on key hit

Skylsmoi 6 년 전
부모
커밋
e364309a80
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/container/HtmlDocument.jsx

+ 1 - 1
src/container/HtmlDocument.jsx 파일 보기

@@ -71,7 +71,7 @@ class HtmlDocument extends React.Component {
71 71
 
72 72
     if (prevState.content.content_id !== state.content.content_id) this.loadContent()
73 73
 
74
-    if (state.mode === MODE.EDIT) {
74
+    if (state.mode === MODE.EDIT && prevState.mode !== state.mode) {
75 75
       tinymce.remove('#wysiwygNewVersion')
76 76
       wysiwyg('#wysiwygNewVersion', this.handleChangeText)
77 77
     }