fix regression issue caused by #3985 related to ActionLink

This commit is contained in:
sbwalker
2024-03-23 11:39:11 -04:00
parent 438cf271c0
commit 784955cdbd
3 changed files with 14 additions and 4 deletions

View File

@ -13,6 +13,13 @@
@((MarkupString)content)
@if (PageState.EditMode && content.Length > 1000)
{
<div class="text-center mt-2">
<ActionLink Action="Edit" EditMode="true" ResourceKey="Edit" />
</div>
}
@code {
private string content = "";