Files
TaskHybrid/salesbook.Shared/Components/SingleElements/Modal/ViewAttached.razor
2025-08-21 10:51:32 +02:00

14 lines
409 B
Plaintext

<MudDialog Class="customDialog-form">
<DialogContent>
@if (!string.IsNullOrEmpty(FileViewerUrl))
{
<iframe src="@FileViewerUrl" style="width:100%; height:80vh; border:none;"></iframe>
}
</DialogContent>
</MudDialog>
@code {
[CascadingParameter] private IMudDialogInstance MudDialog { get; set; }
[Parameter] public string? FileViewerUrl { get; set; }
}