@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
@@ -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
|
});
|