fix(module: input): when its value is changed in code, it would rollback on click (#2906)

This commit is contained in:
James Yeung 2022-11-28 17:44:05 +08:00 committed by GitHub
parent 5ac823dd17
commit 2506b5dc2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -526,6 +526,7 @@ namespace AntDesign
protected override void OnValueChange(TValue value)
{
_inputString = CurrentValueAsString;
base.OnValueChange(value);
if (OnChange.HasDelegate)
{