Enhance InteractionRow and ProspectContainer: refactor layout to use grid, improve styling, and add interaction handling
All checks were successful
Build And Push Dev Docker Image / docker (push) Successful in 1m30s
All checks were successful
Build And Push Dev Docker Image / docker (push) Successful in 1m30s
This commit is contained in:
@@ -94,6 +94,15 @@ namespace FoodsharingSiegen.Server.Controls
|
||||
|
||||
#endregion
|
||||
|
||||
private async Task RemoveFirstAsync(InteractionType type)
|
||||
{
|
||||
if (Prospect != null && RemoveClick != null)
|
||||
{
|
||||
var interaction = Interactions.FirstOrDefault(x => x.Type == type);
|
||||
if (interaction != null) await RemoveClick(interaction.Id);
|
||||
}
|
||||
}
|
||||
|
||||
private MarkupString FeedbackBuilder(Interaction interaction)
|
||||
{
|
||||
var infoList = new List<string>();
|
||||
|
||||
Reference in New Issue
Block a user