Kleinere optische Anpassungen

This commit is contained in:
Andre Beging
2022-05-30 11:04:19 +02:00
parent 45325e339c
commit 4039534547
10 changed files with 117 additions and 50 deletions

View File

@@ -59,17 +59,17 @@
foreach (var interaction in Interactions)
{
<div>
@interaction.User.Name (@interaction.Date.ToShortDateString())
<span title="@interaction.User.Memo">@interaction.User.Name</span> (@interaction.Date.ToShortDateString())
@if (!string.IsNullOrWhiteSpace(interaction.Info))
{
<span>(<i>@interaction.Info</i>)</span>
}
@if ((!Prospect.Complete || interaction.Type == InteractionType.Complete) && AllowAddInteraction)
{
<span>&nbsp;<a href=""><i class="fa-solid fa-square-xmark" @onclick="async () => await RemoveClick.InvokeAsync(interaction.Id)" @onclick:preventDefault></i></a></span>
}
</div>
}
}