Files
gpw_next/GPW.CORE.WRKLOG/Components/AddRA.razor
T
2023-01-05 10:25:42 +01:00

25 lines
449 B
Plaintext

@using CORE.Data.DbModels
@using WRKLOG.Data
@inject GpwDataService GDataServ
@inject MessageService AppMServ
@if (EnableAction)
{
<button @onclick="() => AddNew()" class="px-1 text-center btn btn-lg btn-outline-success">
@if (canPaste)
{
<i class="fas fa-clipboard"></i>
}
else
{
<i class="fas fa-plus-circle"></i>
}
</button>
}
else
{
<span>&nbsp;</span>
}