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

19 lines
496 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.Close">Close</MudButton>
</DialogActions>
</MudDialog>