Fix namespace reference in the TB function of ProfileSelection.

This commit is contained in:
Thorsten Sommer 2025-05-24 18:13:56 +02:00
parent 4a762b3fc0
commit 6fc1972cc4
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -6,7 +6,7 @@ namespace AIStudio.Components;
public partial class ProfileSelection : MSGComponentBase public partial class ProfileSelection : MSGComponentBase
{ {
private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(ConfigurationProviderSelection).Namespace, nameof(ConfigurationProviderSelection)); private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(ProfileSelection).Namespace, nameof(ProfileSelection));
[Parameter] [Parameter]
public Profile CurrentProfile { get; set; } = Profile.NO_PROFILE; public Profile CurrentProfile { get; set; } = Profile.NO_PROFILE;