Browse Source

Merge pull request #8605 from deaflynx/fix/prod-1975/edit-json-validation

Fixed JSON value validations when editing in dialog
pull/8647/head
Andrew Shvayka 3 years ago
committed by GitHub
parent
commit
d33d968aa9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      ui-ngx/src/app/shared/components/value-input.component.ts

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

@ -80,6 +80,7 @@ export class ValueInputComponent implements OnInit, ControlValueAccessor {
if (res) {
this.modelValue = res;
this.inputForm.control.patchValue({value: this.modelValue});
this.updateView();
}
}
);

Loading…
Cancel
Save