From c303d4dea3379d8d35521e7435b036288798ae32 Mon Sep 17 00:00:00 2001 From: deaflynx Date: Mon, 8 May 2023 17:54:27 +0300 Subject: [PATCH] Fix PROD-1975: ValueInputComponent change: add updateView() after closing openEditJSONDialog --- ui-ngx/src/app/shared/components/value-input.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui-ngx/src/app/shared/components/value-input.component.ts b/ui-ngx/src/app/shared/components/value-input.component.ts index 946d320241..4ba7abf157 100644 --- a/ui-ngx/src/app/shared/components/value-input.component.ts +++ b/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(); } } );