From a94df2fdf0694791985f9b421fbcc079cae2939d Mon Sep 17 00:00:00 2001 From: Max Sokolski Date: Fri, 18 Oct 2024 15:11:19 +0300 Subject: [PATCH] fix: set original value for TypeaheadDropdown component --- src/editors/sharedComponents/TypeaheadDropdown/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editors/sharedComponents/TypeaheadDropdown/index.jsx b/src/editors/sharedComponents/TypeaheadDropdown/index.jsx index 5097981b7..c23e1d8a8 100644 --- a/src/editors/sharedComponents/TypeaheadDropdown/index.jsx +++ b/src/editors/sharedComponents/TypeaheadDropdown/index.jsx @@ -90,7 +90,7 @@ class TypeaheadDropdown extends React.Component { this.setValue(opt); this.setState({ displayValue: opt }); } else { - this.setValue(normalized); + this.setValue(value); this.setState({ displayValue: value }); } }