This commit is contained in:
Timothy J. Baek 2024-10-06 15:30:16 -07:00
parent dc6e68bd60
commit 50b1a3471c

View File

@ -31,11 +31,13 @@
}
const updateValue = () => {
_value = value;
if (codeEditor) {
codeEditor.dispatch({
changes: [{ from: 0, to: codeEditor.state.doc.length, insert: _value }]
});
if (_value !== value) {
_value = value;
if (codeEditor) {
codeEditor.dispatch({
changes: [{ from: 0, to: codeEditor.state.doc.length, insert: _value }]
});
}
}
};