Skip to content

Commit c0a2a13

Browse files
authored
(fix) Monaco Adapter: Fix EOL Reset in Monaco Model
Remove setValue call in setIntiated method in Monaco Adapter, replaced with it's own setText method. Signed-off-by: Progyan Bhattacharya <[email protected]>
1 parent 176358a commit c0a2a13

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ Good to have: commit or PR links.
2222
2323
-->
2424

25+
## v0.1.1 - [#30](https://github.com/interviewstreet/firepad-x/pull/24)
26+
27+
### Fixes
28+
29+
- EOL Reset in Monaco Model content due to `setValue` call in `setInitiated` method, changed it to use existing `setText` call in Monaco Adapter.
30+
2531
## v0.1.0 - [#24](https://github.com/interviewstreet/firepad-x/pull/24)
2632

2733
### Added

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hackerrank/firepad",
33
"description": "Collaborative text editing powered by Firebase",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"author": {
66
"email": "[email protected]",
77
"name": "Progyan Bhattacharya",

src/monaco-adapter.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,8 @@ export class MonacoAdapter implements IEditorAdapter {
397397
}
398398

399399
setInitiated(init: boolean): void {
400-
this._monaco.setValue(""); // Perfomance boost on clearing editor after network calls
400+
// Perfomance boost on clearing editor after network calls (do not directly setValue or EOL will get reset and break sync)
401+
this.setText("");
401402
this._initiated = init;
402403
}
403404

0 commit comments

Comments
 (0)