We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62877b commit 743c2b6Copy full SHA for 743c2b6
client/src/CodeChatEditor.mts
@@ -338,8 +338,8 @@ const save_lp = (is_dirty: boolean) => {
338
}
339
update.contents = {
340
metadata: current_metadata,
341
- source: code_mirror_diffable,
342
version: rand(),
+ source: code_mirror_diffable,
343
};
344
345
server/src/processing.rs
@@ -97,9 +97,9 @@ use crate::lexer::{
97
#[ts(export)]
98
pub struct CodeChatForWeb {
99
pub metadata: SourceFileMetadata,
100
- pub source: CodeMirrorDiffable,
101
/// The version number after accepting this update.
102
pub version: f64,
+ pub source: CodeMirrorDiffable,
103
104
105
/// Provide two options for sending CodeMirror data -- as the full contents
0 commit comments