From ab14d34d6778e2dc1b54c20b45a9137df67bc464 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 5097981b75..c23e1d8a82 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 }); } }