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
[Breadcrumb("Usage", FromAction = "Index", FromController = typeof(ReportsController))]
[HttpPost] // TODO: Breadcrumb does not work on any method decorated with Post
[HttpGet]
public async Task<IActionResult> Usage(StudentUsageDataModel usageModel)
If I remove [HttpPost] the breadcrumb appears, if present, it does not. Is this a bug or intentional? Can it be fixed?
The text was updated successfully, but these errors were encountered:
As an input. Breadcrumbs by attribute do not to work on HttpPost for me as well. But they work when defined manual. I would be happy as well if they would work as attribute. My use case is when i want to post a form, but the modelstate is not valid, then i return the page from the post controller action. If save is successfull the action is redirected to the corresponding get of the object created, where breadcrumbs work as attribute.
I have the following method:
If I remove [HttpPost] the breadcrumb appears, if present, it does not. Is this a bug or intentional? Can it be fixed?
The text was updated successfully, but these errors were encountered: