antd-ember icon indicating copy to clipboard operation
antd-ember copied to clipboard

Select Disabled bug

Open zhukejin opened this issue 9 years ago • 1 comments

选择器中的Disabled Option 实际上是可以选的,这个应该是bug。

zhukejin avatar Jun 03 '16 09:06 zhukejin

这个问题应该是修复了的,

    click: function() {
        if (this.get('disabled')) {
            return;
        }
        var parent = this.get('parent');
        parent.send('onSelect', this);
    }

6174 avatar Jun 06 '16 03:06 6174