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

Fixed JSON value validations when editing in dialog
This commit is contained in:
Andrew Shvayka 2023-05-24 18:00:27 +03:00 committed by GitHub
commit d33d968aa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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