fix bug Json edit dialog: add validate
This commit is contained in:
parent
10b9e9c98e
commit
82668c9da2
@ -194,7 +194,7 @@ export class JsonObjectEditComponent implements OnInit, ControlValueAccessor, Va
|
|||||||
}
|
}
|
||||||
|
|
||||||
beautifyJSON() {
|
beautifyJSON() {
|
||||||
if (this.jsonEditor) {
|
if (this.jsonEditor && this.objectValid) {
|
||||||
const res = JSON.stringify(this.modelValue, null, 2);
|
const res = JSON.stringify(this.modelValue, null, 2);
|
||||||
this.jsonEditor.setValue(res ? res : '', -1);
|
this.jsonEditor.setValue(res ? res : '', -1);
|
||||||
this.updateView();
|
this.updateView();
|
||||||
@ -202,7 +202,7 @@ export class JsonObjectEditComponent implements OnInit, ControlValueAccessor, Va
|
|||||||
}
|
}
|
||||||
|
|
||||||
minifyJSON() {
|
minifyJSON() {
|
||||||
if (this.jsonEditor) {
|
if (this.jsonEditor && this.objectValid) {
|
||||||
const res = JSON.stringify(this.modelValue);
|
const res = JSON.stringify(this.modelValue);
|
||||||
this.jsonEditor.setValue(res ? res : '', -1);
|
this.jsonEditor.setValue(res ? res : '', -1);
|
||||||
this.updateView();
|
this.updateView();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user