Skip to content

Commit

Permalink
#747 change column key to camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBlaa committed Apr 10, 2024
1 parent 5a04c08 commit bea42a9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
using System.Web.Http.ModelBinding;
using System.Web.UI.WebControls;
using Telerik.Web.Mvc;
using Telerik.Web.Mvc.Extensions;

namespace BExIS.Modules.Ddm.UI.Controllers
{
Expand Down Expand Up @@ -258,7 +259,7 @@ private List<DataTableColumn> getColumns(StructuredDataStructure datastrutcure)
{
DataTableColumn column = new DataTableColumn();
column.Column = variable.Label;
column.Key = variable.Label.ToLower();
column.Key = variable.Label.ToCamelCase();

// set display Pattern
if (variable.DisplayPatternId > 0)
Expand Down

0 comments on commit bea42a9

Please sign in to comment.