Merge pull request #839 from hishamco/action-link-localization

Fix issue with ActionLink localization
This commit is contained in:
Shaun Walker
2020-10-20 12:50:42 -04:00
committed by GitHub

View File

@ -95,7 +95,11 @@
}
_text = Localize(nameof(Text));
if (IsLocalizable)
{
_text = Localize(nameof(Text));
}
_url = EditUrl(Action, _parameters);
_authorized = IsAuthorized();
}