Forgot this

This commit is contained in:
Peer Schütt 2025-05-08 15:47:10 +02:00
parent 2e98abc2a7
commit 526469f5e7

View File

@ -2,13 +2,15 @@ using System.Diagnostics.CodeAnalysis;
using AIStudio.Provider; using AIStudio.Provider;
using AIStudio.Settings; using AIStudio.Settings;
using AIStudio.Tools.PluginSystem;
using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components;
namespace AIStudio.Components; namespace AIStudio.Components;
public partial class ConfigurationProviderSelection : MSGComponentBase public partial class ConfigurationProviderSelection : MSGComponentBase
{ {
private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(ConfigurationProviderSelection).Namespace, nameof(ConfigurationProviderSelection));
[Parameter] [Parameter]
public Func<string> SelectedValue { get; set; } = () => string.Empty; public Func<string> SelectedValue { get; set; } = () => string.Empty;
@ -25,7 +27,7 @@ public partial class ConfigurationProviderSelection : MSGComponentBase
public Func<bool> Disabled { get; set; } = () => false; public Func<bool> Disabled { get; set; } = () => false;
[Parameter] [Parameter]
public Func<string> HelpText { get; set; } = () => "Select a provider that is preselected."; public Func<string> HelpText { get; set; } = () => TB("Select a provider that is preselected.");
[Parameter] [Parameter]
public Tools.Components Component { get; set; } = Tools.Components.NONE; public Tools.Components Component { get; set; } = Tools.Components.NONE;