Skip to content

Commit

Permalink
fix(buttons): all @input() fields should be public
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed Oct 5, 2016
1 parent c5faac2 commit c96ffd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/buttons/button-radio.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export class ButtonRadioDirective implements ControlValueAccessor, OnInit {
public onChange:any = Function.prototype;
public onTouched:any = Function.prototype;

@Input() private btnRadio:any;
@Input() private uncheckable:boolean;
@Input() private value:any;
@Input() public btnRadio:any;
@Input() public uncheckable:boolean;
@Input() public value:any;

@HostBinding('class.active')
public get isActive(): boolean {
Expand Down

0 comments on commit c96ffd3

Please sign in to comment.