Hi community, I am using a formatter to render URLs in a RDT column. We also use the search component and when it highlights hits on that column, the URL does not work because it includes the highglighting tags. How can I get rid of them. My formatter looks like this:
const formatter = {
fields: ["key", "epic_key"],
format: function(field, value) {
return { value: `<div><a href=\"https://some.domain.com/browse/${value}" target=new> ${value}</a></div>` };
}
};
Any help on this will be appreciated.