When using the cells prop, the .htSearchResult is no longer applied to a cell

I am using the React version. I have a function that I use to build a custom row (with buttons).

const cells = (row, col) => {
    const cellProperties = {};

    if (row === 0) {
      cellProperties.renderer = customButtonRenderer;
      cellProperties.readOnly = true;
      cellProperties.disableVisualSelection = true;
    }

    return cellProperties;
  };

…that I pass to a React component via cells={cells}. However, when i do this, I lose the .htSearchResult class that was formerly passed to any cell via the Search plugin.

Any recommendations on how I can restore this functionality?

Hi @kevin.klein

Thank you for contacting us. Can you please share a code demo where we can recreate the issue? We would need to see your custom renderer logic to determine what can be wrong.