You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The filter seems to just look for any name starting with "SearchBox" then literally any characters thanks to the .* . This is inconsistent with other widgets like Navigation View with ViewName selectors like:
which looks for "NavigationView." then just grabs the next word after as the view name instead of the entire name to be displayed as the option in the select.
A file name of "SearchBox.TestFile.cshtml" will display as "Search box. test file" instead of "Test file" like most other widgets process them. The same filter seems to be applied to Search Results so it's possible that there's a reason for this but it seems odd.
The text was updated successfully, but these errors were encountered:
feather-widgets/Telerik.Sitefinity.Frontend.Search/Mvc/Views/SearchBox/DesignerView.Simple.cshtml
Line 55 in 9a9c071
The filter seems to just look for any name starting with "SearchBox" then literally any characters thanks to the .* . This is inconsistent with other widgets like Navigation View with ViewName selectors like:
feather-widgets/Telerik.Sitefinity.Frontend.Navigation/Mvc/Views/Navigation/DesignerView.Simple.cshtml
Line 76 in 9a9c071
which looks for "NavigationView." then just grabs the next word after as the view name instead of the entire name to be displayed as the option in the select.
A file name of "SearchBox.TestFile.cshtml" will display as "Search box. test file" instead of "Test file" like most other widgets process them. The same filter seems to be applied to Search Results so it's possible that there's a reason for this but it seems odd.
The text was updated successfully, but these errors were encountered: