AI-Studio/app/MindWork AI Studio/Components/ConfigurationFile.razor

21 lines
768 B
Plaintext
Raw Normal View History

2026-05-31 16:35:55 +00:00
@inherits ConfigurationBaseCore
<MudStack Row="@true" Spacing="2" AlignItems="AlignItems.Center" StretchItems="StretchItems.Start" Wrap="Wrap.NoWrap">
<MudTextField
T="string"
Text="@this.Text()"
TextChanged="@this.InternalUpdate"
Disabled="@this.IsDisabled"
Adornment="Adornment.Start"
AdornmentIcon="@this.Icon"
AdornmentColor="@this.IconColor"
UserAttributes="@SPELLCHECK_ATTRIBUTES"
Immediate="@true"
Underline="false"
Class="flex-grow-1"
/>
<MudButton StartIcon="@Icons.Material.Filled.FolderOpen" Variant="Variant.Outlined" Color="Color.Primary" Disabled="@this.IsDisabled" OnClick="@this.OpenFileDialog">
@T("Choose File")
</MudButton>
</MudStack>