@datarailsshared/dr_renderer 1.3.9 → 1.3.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,6 @@ on:
8
8
  push:
9
9
  branches:
10
10
  - 'master'
11
- - 'DEVOPS-239-GH-Actions'
12
11
 
13
12
  concurrency:
14
13
  group: '${{ github.ref }}-${{ github.workflow }}'
package/CODEOWNERS CHANGED
@@ -1 +1 @@
1
- * @Datarails/RnD_Team_Dragons @Datarails/Admins @Datarails/devops_agent
1
+ * @Datarails/RnD_Team_Dragons
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/dr_renderer",
3
- "version": "1.3.9",
3
+ "version": "1.3.12",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -27,8 +27,8 @@ function buildChartSeriesFromPivotInputOnly(input, actuals, forecast, midMonthOf
27
27
 
28
28
  const data = filtered.map(item => ({
29
29
  y: item.Amount,
30
- name: item.Reporting_Month,
31
- initialName: item.Reporting_Month,
30
+ name: item['Reporting Month'],
31
+ initialName: item['Reporting Month'],
32
32
  type: item.Scenario,
33
33
  })).sort((a, b) => new Date(a.name) - new Date(b.name));
34
34