Commit 82668c9da23b6f92a45ff973afa07aae3b684371

Authored by nickAS21
1 parent 10b9e9c9

fix bug Json edit dialog: add validate

... ... @@ -194,7 +194,7 @@ export class JsonObjectEditComponent implements OnInit, ControlValueAccessor, Va
194 194 }
195 195
196 196 beautifyJSON() {
197   - if (this.jsonEditor) {
  197 + if (this.jsonEditor && this.objectValid) {
198 198 const res = JSON.stringify(this.modelValue, null, 2);
199 199 this.jsonEditor.setValue(res ? res : '', -1);
200 200 this.updateView();
... ... @@ -202,7 +202,7 @@ export class JsonObjectEditComponent implements OnInit, ControlValueAccessor, Va
202 202 }
203 203
204 204 minifyJSON() {
205   - if (this.jsonEditor) {
  205 + if (this.jsonEditor && this.objectValid) {
206 206 const res = JSON.stringify(this.modelValue);
207 207 this.jsonEditor.setValue(res ? res : '', -1);
208 208 this.updateView();
... ...