From a8af9da249a0bde658cac995c53778b883b06849 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 28 Mar 2024 22:18:30 +0800 Subject: [PATCH] Fix #4074: use the correct property value. --- Oqtane.Client/Modules/Controls/ActionLink.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Client/Modules/Controls/ActionLink.razor b/Oqtane.Client/Modules/Controls/ActionLink.razor index 45b1e784..9517e275 100644 --- a/Oqtane.Client/Modules/Controls/ActionLink.razor +++ b/Oqtane.Client/Modules/Controls/ActionLink.razor @@ -99,7 +99,7 @@ if (!string.IsNullOrEmpty(Text)) { - _text = Localize(nameof(Text), _text); + _text = Localize(nameof(Text), Text); } else {