Material-ui的Checkbox组件的标题无法正常工作

时间:2018-12-27 09:58:59

标签: reactjs material-ui

title属性在复选框上无法正常工作,当鼠标位于围绕复选框的区域上时,它可以工作,但是当鼠标在输入元素上时,则无法工作。

这是我的复选框代码:

classification_model <- glm(as.factor(Classification) ~ ., data = 
                           training_data, family = binomial)

和渲染

const StyledCheckbox = withStyles({
colorPrimary: {
    borderColor: '#757575',
    borderRadius: 1,
    '&$checked': {
        color: '#00adb3'
    },
},
checked: {},})(Checkbox);

这是一个例子 enter image description here enter image description here

0 个答案:

没有答案