From efcfe544b3fe377fe7b579095f8d62ef2dfb281d Mon Sep 17 00:00:00 2001 From: lodicolo Date: Thu, 30 Jan 2025 12:00:06 -0500 Subject: [PATCH] fix(2517): Database failing to load readonly Color, removed readonly modifier that was introduced in 5dcb0b5d (#2518) --- Intersect.Server.Core/Entities/Label.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Intersect.Server.Core/Entities/Label.cs b/Intersect.Server.Core/Entities/Label.cs index d28f8d6d3a..9e37c53d3e 100644 --- a/Intersect.Server.Core/Entities/Label.cs +++ b/Intersect.Server.Core/Entities/Label.cs @@ -6,7 +6,7 @@ namespace Intersect.Server.Entities; public partial struct Label(string label, Color color) { [JsonProperty(nameof(Label))] - public readonly string Text = label; + public string Text = label; - public readonly Color Color = color; + public Color Color = color; }