diff --git a/Oqtane.Client/Modules/Controls/ActionLink.razor b/Oqtane.Client/Modules/Controls/ActionLink.razor index 9af63298..45b1e784 100644 --- a/Oqtane.Client/Modules/Controls/ActionLink.razor +++ b/Oqtane.Client/Modules/Controls/ActionLink.razor @@ -97,11 +97,14 @@ { base.OnParametersSet(); - _text = Action; if (!string.IsNullOrEmpty(Text)) { _text = Localize(nameof(Text), _text); } + else + { + _text = Localize(nameof(Action), Action); + } if (IconOnly && !string.IsNullOrEmpty(IconName)) { diff --git a/Oqtane.Client/Modules/HtmlText/Index.razor b/Oqtane.Client/Modules/HtmlText/Index.razor index 642c8415..6247bb16 100644 --- a/Oqtane.Client/Modules/HtmlText/Index.razor +++ b/Oqtane.Client/Modules/HtmlText/Index.razor @@ -13,6 +13,13 @@ @((MarkupString)content) +@if (PageState.EditMode && content.Length > 1000) +{ +