Files
mapo-core/MP-TAB-SERV/Pages/MachineDetail.razor
T
2023-10-02 19:08:15 +02:00

15 lines
244 B
Plaintext

@page "/machine-detail"
@using MP.Data.Services;
@inject MessageService MsgServ
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
{
<b>loading...</b>
}
else
{
<MachineBlock RecMSE="CurrMSE" FullMode="false"></MachineBlock>
}