set the value in the editor for results (#1799)

This commit is contained in:
sunghyunkang1111
2024-04-13 15:19:56 -05:00
committed by GitHub
parent 953bef404b
commit 00a816c488

View File

@@ -54,6 +54,9 @@ export class EditorReact extends React.Component<EditorReactProps, EditorReactSt
const existingContent = this.editor.getModel().getValue(); const existingContent = this.editor.getModel().getValue();
if (this.props.content !== existingContent) { if (this.props.content !== existingContent) {
if (this.props.isReadOnly) {
this.editor.setValue(this.props.content);
} else {
this.editor.pushUndoStop(); this.editor.pushUndoStop();
this.editor.executeEdits("", [ this.editor.executeEdits("", [
{ {
@@ -63,6 +66,7 @@ export class EditorReact extends React.Component<EditorReactProps, EditorReactSt
]); ]);
} }
} }
}
public componentWillUnmount(): void { public componentWillUnmount(): void {
this.selectionListener && this.selectionListener.dispose(); this.selectionListener && this.selectionListener.dispose();