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

Fix docs for checkbox #276

Merged
merged 2 commits into from
Jul 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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