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

Commit

Permalink
Fix docs for checkbox (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-SteveBrush authored Jul 6, 2021
1 parent 6eaa13a commit 63bdf08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/public/modules/checkbox/checkbox.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ export class SkyCheckboxComponent implements ControlValueAccessor, OnInit {
public name: string = `sky-checkbox-${++nextId}`;

/**
* Fires when users select or deselect the checkbox.
* Fires when the selected value changes.
*/
@Output()
public change: EventEmitter<SkyCheckboxChange> = new EventEmitter<SkyCheckboxChange>();
public change = new EventEmitter<SkyCheckboxChange>();

/**
* Specifies an icon to display in place of the checkbox. To group icon checkboxes
Expand Down Expand Up @@ -166,7 +166,7 @@ export class SkyCheckboxComponent implements ControlValueAccessor, OnInit {
}

/**
* Fires when the selected value changes.
* Fires when users select or deselect the checkbox.
*/
@Output()
public get checkedChange(): Observable<boolean> {
Expand Down

0 comments on commit 63bdf08

Please sign in to comment.