AI-Studio/app/MindWork AI Studio/Components/AttachmentsDialog.razor
2025-12-15 14:13:36 +01:00

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>