Harden admin telemetry and deployment safeguards
TaxBaik CI/CD / build-and-deploy (push) Successful in 4m30s
TaxBaik CI/CD / build-and-deploy (push) Successful in 4m30s
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<MudPaper Class="admin-surface" Elevation="0">
|
||||
@if (Loading)
|
||||
{
|
||||
@if (SkeletonContent is not null)
|
||||
{
|
||||
@SkeletonContent
|
||||
}
|
||||
else
|
||||
{
|
||||
<AdminSkeletonRows />
|
||||
}
|
||||
}
|
||||
else if (ChildContent is not null)
|
||||
{
|
||||
@ChildContent
|
||||
}
|
||||
</MudPaper>
|
||||
|
||||
@code {
|
||||
[Parameter]
|
||||
public bool Loading { get; set; }
|
||||
|
||||
[Parameter]
|
||||
public RenderFragment? ChildContent { get; set; }
|
||||
|
||||
[Parameter]
|
||||
public RenderFragment? SkeletonContent { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user