mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-25 15:06:55 +00:00
Fix JSONEditor bug with undefined value (#379)
This commit is contained in:
parent
a4a367a212
commit
19fa5e17a5
@ -59,10 +59,12 @@ export class JsonEditorViewModel extends WaitsForTemplateViewModel {
|
|||||||
this.params = params;
|
this.params = params;
|
||||||
|
|
||||||
this.params.content.subscribe((newValue: string) => {
|
this.params.content.subscribe((newValue: string) => {
|
||||||
if (!!this.editor) {
|
if (newValue) {
|
||||||
this.editor.getModel().setValue(newValue);
|
if (!!this.editor) {
|
||||||
} else {
|
this.editor.getModel().setValue(newValue);
|
||||||
this.createEditor(newValue, this.configureEditor.bind(this));
|
} else {
|
||||||
|
this.createEditor(newValue, this.configureEditor.bind(this));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user