From d0fd7469affee2cd78cdba42491f573cc9be5369 Mon Sep 17 00:00:00 2001 From: James Kolpack Date: Sun, 28 Dec 2025 14:51:12 -0500 Subject: [PATCH] Replace MudText with MudChip in EventAttributes component for enhanced styling and visual consistency --- .../Features/Events/Components/EventAttributes.razor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WebApp/Components/Features/Events/Components/EventAttributes.razor b/WebApp/Components/Features/Events/Components/EventAttributes.razor index bab2d55..0ba1f1c 100644 --- a/WebApp/Components/Features/Events/Components/EventAttributes.razor +++ b/WebApp/Components/Features/Events/Components/EventAttributes.razor @@ -4,7 +4,7 @@ { @EventDefinition.LevelOfEffort } *@ - + @{ var loeIcon = AppIcons.LevelOfEffortIcon(EventDefinition.LevelOfEffort); var loeColor = AppIcons.IconColors.GetValueOrDefault(loeIcon, "inherit"); @@ -22,7 +22,7 @@ @RenderFixedWidthChar(charStr, color: color) } } - + @code {