@datarailsshared/dr_renderer 1.2.364 → 1.2.366

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/dr_renderer",
3
- "version": "1.2.364",
3
+ "version": "1.2.366",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -8858,7 +8858,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
8858
8858
  const uniqueFormattedKeysList = [];
8859
8859
  lodash.forEach(widget.pivot.keysObject[keysListName], subKeysList => {
8860
8860
  lodash.forEach(subKeysList, (key, index) => {
8861
- if (widgetFields[index].type === 'Date') {
8861
+ if (widgetFields[index] && widgetFields[index].type === 'Date') {
8862
8862
  subKeysList[index] = invertedDateStringMap[key] || key;
8863
8863
  }
8864
8864
  });