Skip to content

Commit 1c2b6ef

Browse files
author
pipeline
committed
feature(EJ2-4247): changed argument datatype of select event in ListView
1 parent fe37fd2 commit 1c2b6ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/lp.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class LPController {
3535

3636
onSampleClick(e: SelectEventArgs) {
3737
window.isInteractedList = e.isInteracted;
38-
let data: { [key: string]: Object } = e.data;
38+
let data: { [key: string]: Object } = e.data as { [key: string]: Object };
3939
if (e.isInteracted) {
4040
if (data.component && location.hash.replace('/#', '') !== data.path) {
4141
document.body.classList.add('sb-overlay');

0 commit comments

Comments
 (0)