@vuu-ui/vuu-table-extras 0.6.23-debug → 0.6.24-debug

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/cjs/index.js CHANGED
@@ -100,7 +100,7 @@ var getFlashStyle = (colType) => {
100
100
  return FlashStyle.BackgroundOnly;
101
101
  } else if (colType) {
102
102
  const { renderer } = colType;
103
- return renderer && renderer.flashStyle || FlashStyle.BackgroundOnly;
103
+ return renderer && "flashStyle" in renderer || FlashStyle.BackgroundOnly;
104
104
  }
105
105
  };
106
106
  var BackgroundCell = ({ column, row }) => {