Skip to content

Commit 58801aa

Browse files
GomezIvannGomezIvann
authored andcommitted
Event Prop documentation update in Accordion
1 parent 5f49a4c commit 58801aa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

projects/dxc-ngx-cdk-site/src/app/components/examples/accordion/properties/accordion-table-properties/accordion-table-properties.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<td>onClick: EventEmitter</td>
4747
<td></td>
4848
<td>
49-
This function will be called when the user clicks the accordion to expand
49+
This event will emit in case the user clicks the accordion to expand
5050
or collapse the panel. The new state of the panel will be passed as a
5151
parameter.
5252
</td>

projects/dxc-ngx-cdk/src/lib/dxc-accordion/dxc-accordion.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ export class DxcAccordionComponent implements OnInit, OnChanges, AfterViewInit {
7676
}
7777
private _disabled = false;
7878
/**
79-
* This event will be emitted when the user clicks the accordion to expand or collapse
80-
* the panel. The new state of the panel will be passed as a parameter.
79+
* This event will emit in case the user clicks the accordion to expand or collapse
80+
* the panel. The new state of the panel will be passed as a parameter.S
8181
*/
8282
@Output() onClick = new EventEmitter<boolean>();
8383
/**

0 commit comments

Comments
 (0)