Skip to content

Commit

Permalink
Merge pull request #4077 from zyhfish/task/fix-issue-4074
Browse files Browse the repository at this point in the history
Fix #4074: use the correct property value.
  • Loading branch information
sbwalker authored Mar 28, 2024
2 parents 1482166 + a8af9da commit cb086fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Oqtane.Client/Modules/Controls/ActionLink.razor
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@

if (!string.IsNullOrEmpty(Text))
{
_text = Localize(nameof(Text), _text);
_text = Localize(nameof(Text), Text);
}
else
{
Expand Down

0 comments on commit cb086fe

Please sign in to comment.