!3555 fix(#I62RUB): the search result incorrect in AutoFill component

* refactor: 精简代码
* fix: 修复开启自定义过滤后结果不变问题
This commit is contained in:
Argo 2022-11-23 15:24:47 +00:00
parent f5f4ede41c
commit 0bc43b2635

View File

@ -333,7 +333,7 @@ public partial class AutoFill<TValue>
[JSInvokable]
public void TriggerOnChange(string val)
{
CurrentValueAsString = val;
InputString = val;
}
/// <summary>
@ -345,10 +345,7 @@ public partial class AutoFill<TValue>
{
if (disposing)
{
if (Interop != null)
{
Interop.Dispose();
}
Interop?.Dispose();
}
return base.DisposeAsync(disposing);