24 lines
615 B
Plaintext
24 lines
615 B
Plaintext
@if (SelectedCellDetail is not null)
|
|
{
|
|
<div class="tables-selection-menu" aria-label="Selected result actions">
|
|
@if (!SelectedCellDetail.IsCurated)
|
|
{
|
|
<button type="button" class="btn btn-secondary" @onclick="OnCurate">Open curation</button>
|
|
}
|
|
|
|
<button type="button" class="btn btn-primary" @onclick="OnEdit">Open editor</button>
|
|
</div>
|
|
}
|
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
public CriticalTableCellDetail? SelectedCellDetail { get; set; }
|
|
|
|
[Parameter]
|
|
public EventCallback OnEdit { get; set; }
|
|
|
|
[Parameter]
|
|
public EventCallback OnCurate { get; set; }
|
|
|
|
} |