508cba7f11
- Ancora fix finali grafici icone e colori
22 lines
615 B
Plaintext
22 lines
615 B
Plaintext
@using MP.SPEC.Components
|
|
@using MP.SPEC.Data
|
|
@using System.Security.Claims
|
|
@using Microsoft.AspNetCore.Components.Authorization
|
|
|
|
@inject AuthenticationStateProvider AuthenticationStateProvider
|
|
@inject MessageService MService
|
|
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<div class="px-2">
|
|
<i class="fas fa-user-alt"></i> <b>@userName</b>
|
|
</div>
|
|
<div class="px-2">
|
|
<AskCloseOdl></AskCloseOdl>
|
|
</div>
|
|
<div class="pe-2">
|
|
<button class="btn btn-primary" @onclick="() => flushCache()" title="Forza Refresh Dati correnti"> Force Reload </button>
|
|
</div>
|
|
</div>
|
|
|
|
|