changed InvokeAsync method as Invoke

pull/4145/head
Akın Sabri Çam 5 years ago
parent d66b493885
commit f08ea476e1

@ -5,11 +5,10 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Pages.Shared.Components.AbpPag
{
public class AbpPageSearchBoxViewComponent : AbpViewComponent
{
public async Task<IViewComponentResult> InvokeAsync(string placeHolder)
public IViewComponentResult Invoke(string placeHolder)
{
return await Task.FromResult(
View("~/Pages/Shared/Components/AbpPageSearchBox/Default.cshtml",
new AbpSearchBoxViewModel {PlaceHolder = placeHolder}));
return View("~/Pages/Shared/Components/AbpPageSearchBox/Default.cshtml",
new AbpSearchBoxViewModel {PlaceHolder = placeHolder});
}
}
}
Loading…
Cancel
Save