You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I think I'm facing an issue : when I put a React element in the label prop of a column, the tooltip "[object Object]" appears when I the cursor is hovering the column header :
<Table/* ... props */><Columnlabel={<LocalizedTextid="WEB_LAST_MEASUREMENT"/>}/* ... other props *//></Table>
After inspecting the node, I can see that the span element in the header has its prop title containing the react element I declared as the label :
I think I can fix that by giving the Column a custom headerRenderer prop, but I don't think that's the expected behaviour. Or am I doing something wrong ?
The text was updated successfully, but these errors were encountered:
Hello, I think I'm facing an issue : when I put a React element in the
label
prop of a column, the tooltip "[object Object]" appears when I the cursor is hovering the column header :After inspecting the node, I can see that the
span
element in the header has its proptitle
containing the react element I declared as the label :I think I can fix that by giving the Column a custom
headerRenderer
prop, but I don't think that's the expected behaviour. Or am I doing something wrong ?The text was updated successfully, but these errors were encountered: