modifications to ActionLink and ActionDialog controls, added logic to prevent IHostedService from blocking startup, made controller route prefix consistent in module template

This commit is contained in:
Shaun Walker
2020-07-17 15:09:05 -04:00
parent b02bdee8cb
commit bc73e5e3d0
6 changed files with 14 additions and 11 deletions

View File

@ -7,12 +7,12 @@
@if (PageState.EditMode)
{
<br /><ActionLink Action="Edit" EditMode="false" /><br /><br />
<br /><ActionLink Action="Edit" EditMode="true" /><br /><br />
}
@code {
public override List<Resource> Resources => new List<Resource>()
{
{
new Resource { ResourceType = ResourceType.Stylesheet, Url = ModulePath() + "Module.css" }
};