5722ad4167
- porting blazor 8.0 - riorganizzazione area components - add componenti da 6 - spostamento ver 6 a old (migrata comunque)
21 lines
339 B
Plaintext
21 lines
339 B
Plaintext
|
|
|
|
@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>
|
|
}
|
|
|