mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-13 14:41:36 +00:00
19 lines
498 B
Plaintext
19 lines
498 B
Plaintext
@inherits MSGComponentBase
|
|
|
|
<MudDialog>
|
|
<TitleContent>
|
|
Your attached files
|
|
</TitleContent>
|
|
<DialogContent>
|
|
@foreach (var filePath in this.DocumentPaths)
|
|
{
|
|
<MudMenuItem
|
|
Icon="@Icons.Material.Filled.AttachFile"
|
|
Label="@Path.GetFileName(filePath)">
|
|
</MudMenuItem>
|
|
}
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="@this.Cancel">Cancel</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |