mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-07 13:56:27 +00:00
27 lines
835 B
Plaintext
27 lines
835 B
Plaintext
|
|
@inherits ConfigurationBaseCore
|
||
|
|
|
||
|
|
<MudStack Row="true" AlignItems="AlignItems.Center" Spacing="2">
|
||
|
|
<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"
|
||
|
|
Size="Size.Small"
|
||
|
|
Disabled="@this.IsDisabled"
|
||
|
|
Class="mb-1"
|
||
|
|
OnClick="@this.OpenFileDialog">
|
||
|
|
@T("Choose File")
|
||
|
|
</MudButton>
|
||
|
|
</MudStack>
|