@datarailsshared/dr_renderer 1.2.110 → 1.2.112

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/src/pivottable.js CHANGED
@@ -641,12 +641,12 @@ let initPivotTable = function($, window, document) {
641
641
  class: 'no-publish-item',
642
642
  },
643
643
  },
644
- getErrorPlaceholder: function(placeholder, useNewUx = true) {
644
+ getErrorPlaceholder: function(placeholder) {
645
645
  if (placeholder && typeof placeholder === 'object') {
646
646
  return $(`
647
647
  <div class="noData">
648
648
  <div class="noData-title">${placeholder.title}</div>
649
- <i class="noData-image ${useNewUx ? placeholder.class : 'fa fa-info'}"></i>
649
+ <i class="noData-image ${placeholder.class}"></i>
650
650
  <div class="noData-text">${placeholder.text}</div>
651
651
  <div class="noData-error-action"></div>
652
652
  </div>