diff --git a/src/PowderCoating.Web/Controllers/CompanySettingsController.cs b/src/PowderCoating.Web/Controllers/CompanySettingsController.cs index d9224cb..bc9ebde 100644 --- a/src/PowderCoating.Web/Controllers/CompanySettingsController.cs +++ b/src/PowderCoating.Web/Controllers/CompanySettingsController.cs @@ -3073,7 +3073,11 @@ public class CompanySettingsController : Controller }; var json = System.Text.Json.JsonSerializer.Serialize(export, - new System.Text.Json.JsonSerializerOptions { WriteIndented = true }); + new System.Text.Json.JsonSerializerOptions + { + WriteIndented = true, + PropertyNamingPolicy = System.Text.Json.JsonNamingPolicy.CamelCase + }); var filename = $"formula-templates-{DateTime.UtcNow:yyyyMMdd}.json"; return File(System.Text.Encoding.UTF8.GetBytes(json), "application/json", filename); }