File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ export class RbCheckbox extends FormControl(RbBase()) {
9898 async _onclick ( value , evt ) { // :void
9999 this . setValue ( value ) ;
100100 await this . validate ( ) ;
101+ this . _onchange ( evt ) ;
101102 }
102103 async _onkeypress ( value , evt ) { // :void
103104 const keys = [ 'enter' , 'space' ] ;
Original file line number Diff line number Diff line change 1212 ? html`< label class ="label "> ${props.label}</ label > `
1313 : null
1414 }
15-
15+
1616 < label
1717 tabindex ="${props.disabled ? -1 : 0} "
1818 class ="sublabel ${!!props.value ? 'active' : ''} "
2626 name ="${props.name} "
2727 .value ="${props.value} "
2828 ?checked ="${!!props.value} "
29- @change ="${this._onchange.bind(this)} "
3029 @click ="${this._onclick.bind(this, props.value)} ">
3130 </ label >
3231
You can’t perform that action at this time.
0 commit comments