Try your search with a different keyword or use * as a wildcard.
@model StoreScopeConfigurationModel
@inject Nop.Core.IWebHelper webHelper
@{
var returnUrl = webHelper.GetRawUrl(Context.Request);
var stores = await Model.Stores.SelectAwait(async store => new SelectListItem
{
Text = store.Name,
Value = Url.Action("ChangeStoreScopeConfiguration", "Setting", new { storeid = store.Id, returnUrl }, webHelper.GetCurrentRequestProtocol()),
Selected = store.Id.Equals(Model.StoreId)
}).ToListAsync();
stores.Insert(0, new SelectListItem
{
Text = T("Admin.Configuration.Settings.StoreScope.AllStores").Text,
Value = Url.Action("ChangeStoreScopeConfiguration", "Setting", new { storeid = 0, returnUrl }, webHelper.GetCurrentRequestProtocol()),
Selected = 0.Equals(Model.StoreId)
});
}
@if (Model.StoreId > 0)
{
}