Fix for #1690 Tab needs clicking to render UI

User Management Tab needs clicking to render UI when language is not default.  Modification to the TabPanel fixes the issue without  forcing the Heading property to be populated.
This commit is contained in:
Leigh 2021-09-29 18:05:59 +02:00
parent 070ddff1b4
commit 2fe93d4e64

View File

@ -38,11 +38,7 @@ else
if (string.IsNullOrEmpty(Heading))
{
Name = Localize(nameof(Name), Name);
}
else
{
Heading = Localize(nameof(Heading), Heading);
Heading = Localize(nameof(Name), Name);
}
}