Use bindable value for search text

This commit is contained in:
smoogipoo 2020-09-11 17:45:57 +09:00
parent 6327f12fe4
commit b047fbb8ee
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ protected override void LoadComplete()
private FilterCriteria createCriteria() => new FilterCriteria
{
SearchText = Search.Text,
SearchText = Search.Current.Value,
Collection = collectionDropdown.Current.Value?.Collection
};