Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Updates based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhwhite committed Apr 15, 2021
1 parent a6af59f commit 5a1da12
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/app/public/modules/radio/radio.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,7 @@ export class SkyRadioComponent implements OnDestroy, ControlValueAccessor {
/**
* Fires when users focus off a radio button.
*/
@Output()
public get blur(): Observable<SkyRadioChange> {
public get blur(): Observable<undefined> {
return this._blur;
}

Expand Down Expand Up @@ -254,7 +253,7 @@ export class SkyRadioComponent implements OnDestroy, ControlValueAccessor {
}

private _change = new EventEmitter<SkyRadioChange>();
private _blur = new EventEmitter<SkyRadioChange>();
private _blur = new EventEmitter<undefined>();
private _checked = false;
private _checkedChange = new BehaviorSubject<boolean>(this._checked);
private _disabled: boolean = false;
Expand Down

0 comments on commit 5a1da12

Please sign in to comment.