Within my ReactJS application, I am utilizing Material UI along with react-bootstrap-table components.
One particular cell in my application utilizes the Material UI IconButton
as shown below:
<IconButton tooltip={t('tooltips:editRegulation')} tooltipPosition={'left'}
onClick={() => this.props.history.push("/pms-records/edit/" + row.pmsFindingId)}>{cell}}>
<FontIcon className="fa fa-pencil" aria-hidden="true"/>
</IconButton>
The output looks like this:
https://i.sstatic.net/WpJ8e.png
The tooltip text gets cropped by the borders of the table cell. I have attempted adjusting the z-index
and referred to this post: https://github.com/mui-org/material-ui/issues/5912
However, I have failed to find a solution so far.
Any suggestions to help me resolve this issue?
Thank you in advance