25 lines
449 B
Plaintext
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> </span>
|
|
}
|
|
|
|
|