There was an error while loading. Please reload this page.
1 parent a806c62 commit 167b768Copy full SHA for 167b768
1 file changed
src/components/c-table/js/rowTooltip.js
@@ -54,9 +54,11 @@ class RowTooltip extends Component {
54
);
55
56
if (tooltipEle) {
57
+ const checkboxEle = targetRow.querySelector(`.${prefixCls}-checkbox-disabled`);
58
+ const radioEle = targetRow.querySelector(`.${prefixCls}-radio-input[disabled]`);
59
const tooltipStyle = getTooltipPositionInBody(
60
tooltipEle,
- targetRow.querySelector(`.${prefixCls}-checkbox-disabled`),
61
+ checkboxEle || radioEle,
62
'top-left',
63
64
0 commit comments