mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 21:49:06 +00:00
16 lines
643 B
Plaintext
16 lines
643 B
Plaintext
|
<MudStack Row="@true" Spacing="3" Class="mb-3" StretchItems="StretchItems.None" AlignItems="AlignItems.Center">
|
||
|
<MudTextField
|
||
|
T="string"
|
||
|
Text="@this.Directory"
|
||
|
Label="@this.Label"
|
||
|
ReadOnly="@true"
|
||
|
Adornment="Adornment.Start"
|
||
|
AdornmentIcon="@Icons.Material.Filled.Folder"
|
||
|
UserAttributes="@SPELLCHECK_ATTRIBUTES"
|
||
|
Variant="Variant.Outlined"
|
||
|
/>
|
||
|
|
||
|
<MudButton StartIcon="@Icons.Material.Filled.FolderOpen" Variant="Variant.Outlined" Color="Color.Primary" Disabled="this.Disabled" OnClick="@this.OpenDirectoryDialog">
|
||
|
Choose Directory
|
||
|
</MudButton>
|
||
|
</MudStack>
|