Try your search with a different keyword or use * as a wildcard.
@model ConfigurationModel
    
        
            
                
                    
                        
                            
                {
                new FilterParameter(nameof(Model.TaxTransactionLogSearchModel.CreatedFrom), nameof(Model.TaxTransactionLogSearchModel)),
                new FilterParameter(nameof(Model.TaxTransactionLogSearchModel.CreatedTo), nameof(Model.TaxTransactionLogSearchModel))
                },
                ColumnCollection = new List
                    {
                    new ColumnProperty(nameof(TaxTransactionLogModel.Id))
                    {
                    IsMasterCheckBox = true,
                    Render = new RenderCheckBox("checkbox_log"),
                    ClassName =  NopColumnClassDefaults.CenterAll,
                    Width = "50",
                    },
                    new ColumnProperty(nameof(TaxTransactionLogModel.StatusCode))
                    {
                    Title = T("Plugins.Tax.Avalara.Log.StatusCode").Text,
                    Width = "100"
                    },
                    new ColumnProperty(nameof(TaxTransactionLogModel.Url))
                    {
                    Title = T("Plugins.Tax.Avalara.Log.Url").Text,
                    Width = "200"
                    },
                    new ColumnProperty(nameof(TaxTransactionLogModel.CreatedDate))
                    {
                    Title = T("Plugins.Tax.Avalara.Log.CreatedDate").Text,
                    Width = "200",
                    Render = new RenderDate()
                    },
                    new ColumnProperty(nameof(TaxTransactionLogModel.Id))
                    {
                    Title = T("Admin.Common.View").Text,
                    Width = "100",
                    ClassName = NopColumnClassDefaults.Button,
                    Render = new RenderButtonView(new DataUrl("~/Admin/TaxTransactionLog/View/"))
                    }
                    }
                    })