AI-Studio/app/MindWork AI Studio/Dialogs/ReviewAttachmentsDialog.razor

19 lines
496 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.Close">Close</MudButton>
2025-12-15 13:13:36 +00:00
</DialogActions>
</MudDialog>