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

19 lines
498 B
Plaintext
Raw Normal View History

2025-12-15 13:13:36 +00:00
@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>