Browse Source

Update json value for correct working

pull/5305/head
ArtemDzhereleiko 5 years ago
parent
commit
571d4f0dbd
  1. 3
      ui-ngx/src/app/shared/components/value-input.component.ts

3
ui-ngx/src/app/shared/components/value-input.component.ts

@ -114,7 +114,7 @@ export class ValueInputComponent implements OnInit, ControlValueAccessor {
}
updateView() {
if (this.inputForm.valid || this.valueType === ValueType.BOOLEAN || this.valueType === ValueType.JSON) {
if (this.inputForm.valid || this.valueType === ValueType.BOOLEAN) {
this.propagateChange(this.modelValue);
} else {
this.propagateChange(null);
@ -126,6 +126,7 @@ export class ValueInputComponent implements OnInit, ControlValueAccessor {
this.modelValue = false;
} else if (this.valueType === ValueType.JSON) {
this.modelValue = {};
this.inputForm.form.get('value').patchValue({});
} else {
this.modelValue = null;
}

Loading…
Cancel
Save