@sd-angular/core 1.3.180 → 1.3.181

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.
@@ -3348,7 +3348,7 @@
3348
3348
  hasGroup = true;
3349
3349
  }
3350
3350
  if (typeof (hidden) === 'function') {
3351
- if (!hidden(rowData)) {
3351
+ if (!hidden(rowData.data)) {
3352
3352
  flag = true;
3353
3353
  rowData.meta.selector.actions.push(key);
3354
3354
  if (isGrouped) {
@@ -3383,7 +3383,7 @@
3383
3383
  var hidden = action.hidden, isGrouped = action.isGrouped;
3384
3384
  var key = hash__default['default'](action);
3385
3385
  if (typeof (hidden) === 'function') {
3386
- if (!hidden(rowData)) {
3386
+ if (!hidden(rowData.data)) {
3387
3387
  rowData.meta.selector.actions.push(key);
3388
3388
  if (isGrouped) {
3389
3389
  groupedActions.push(key);