Files
mapo-core/MP-TAB-SERV/Pages/Notes.razor
T
2023-10-16 15:03:47 +02:00

13 lines
265 B
Plaintext

@page "/notes"
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
{
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
}
else
{
<MachineBlock RecMSE="CurrMSE" FullMode="false"></MachineBlock>
<NotesMan RecMSE="CurrMSE"></NotesMan>
}