From e234a6432d3c24c942477f97f7c4f0faf473c2be Mon Sep 17 00:00:00 2001 From: likp Date: Mon, 28 Oct 2024 20:28:02 +0100 Subject: [PATCH] Fixed name of grouping and valuesets --- PxWeb/Mappers/SelectionResponseMapper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PxWeb/Mappers/SelectionResponseMapper.cs b/PxWeb/Mappers/SelectionResponseMapper.cs index 907df2ec..8349930c 100644 --- a/PxWeb/Mappers/SelectionResponseMapper.cs +++ b/PxWeb/Mappers/SelectionResponseMapper.cs @@ -50,12 +50,12 @@ public SelectionResponse Map(Selection[] selections, List heading, List< if (variable.CurrentGrouping != null) { - return variable.CurrentGrouping.ID; + return "agg_" + variable.CurrentGrouping.ID; } if (variable.CurrentValueSet != null) { - return variable.CurrentValueSet.ID; + return "vs_" + variable.CurrentValueSet.ID; } return null;