2024-12-12 17:35:52 -06:00
|
|
|
@namespace LANCommander.Server.UI.Components
|
2025-03-09 01:43:12 -06:00
|
|
|
@typeparam TItem where TItem : class, IBaseModel
|
2024-12-12 17:35:52 -06:00
|
|
|
|
|
|
|
|
<ActionColumn Title="" Style="text-align: right">
|
2025-01-15 18:52:53 -06:00
|
|
|
<Flex Gap="FlexGap.Small" Justify="FlexJustify.End">
|
2024-12-12 17:35:52 -06:00
|
|
|
@ChildContent
|
|
|
|
|
</Flex>
|
|
|
|
|
</ActionColumn>
|
|
|
|
|
|
|
|
|
|
@code {
|
|
|
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
|
|
|
[CascadingParameter] public DataTable<TItem> DataTable { get; set; }
|
|
|
|
|
}
|