@datarailsshared/dr_renderer 1.4.112 → 1.4.114

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.4.112",
3
+ "version": "1.4.114",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -211,9 +211,7 @@ let initDRPivotTable = function($, window, document) {
211
211
  if (!colKey.length && !rowKey.length) {
212
212
  this.allTotal.push(record);
213
213
  } else if (!colKey.length && rowKey.length) {
214
- if (!this.rowTotals[flatRowKey] && !(record['Scenario Cycle']
215
- && isSmartQueriesEnabled
216
- && (record['Scenario'] === 'SQ_Actuals' || record['Scenario'] === 'Forecast'))) {
214
+ if (!this.rowTotals[flatRowKey] || isSmartQueriesEnabled) {
217
215
  this.rowTotals[flatRowKey] = getRowAggregator(rowKey.slice());
218
216
  this.rowTotals[flatRowKey].push(record);
219
217
  }