Browse Source

fix: editor不能更新节点接口的代码

kilnonedre 1 năm trước cách đây
mục cha
commit
a4c75b30b2
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      packages/yili-dag/src/ScriptEditor.tsx

+ 2 - 2
packages/yili-dag/src/ScriptEditor.tsx

@@ -126,8 +126,8 @@ export default class ScriptEditor extends React.Component<any, any> {
     );
     editor.setSize(null, '100%');
     const template = getEditorTemplate(this.props);
-    const value = this.props.scriptText.trim();
-    editor.setValue(value ? value : template);
+    // const value = this.props.scriptText.trim();
+    editor.setValue(template);
     this.setState({ editor });
   }