mirror of
https://github.com/open-webui/open-webui
synced 2025-01-18 00:30:51 +00:00
refac
This commit is contained in:
parent
dc6e68bd60
commit
50b1a3471c
@ -31,11 +31,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
const updateValue = () => {
|
const updateValue = () => {
|
||||||
_value = value;
|
if (_value !== value) {
|
||||||
if (codeEditor) {
|
_value = value;
|
||||||
codeEditor.dispatch({
|
if (codeEditor) {
|
||||||
changes: [{ from: 0, to: codeEditor.state.doc.length, insert: _value }]
|
codeEditor.dispatch({
|
||||||
});
|
changes: [{ from: 0, to: codeEditor.state.doc.length, insert: _value }]
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user