Skip to content

Commit

Permalink
Change in TableRowSelectEvent property data (#13430)
Browse files Browse the repository at this point in the history
Fixes #13383
  • Loading branch information
indulakshmikr authored Aug 29, 2023
1 parent 17ee70e commit 9336cfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/components/table/table.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export interface TableRowSelectEvent {
/**
* Row data.
*/
data?: any[];
data?: any;
/**
* Selection type.
*/
Expand Down
4 changes: 2 additions & 2 deletions src/app/showcase/doc/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -20680,7 +20680,7 @@
"name": "data",
"optional": true,
"readonly": false,
"type": "any[]",
"type": "any",
"description": "Row data."
},
{
Expand Down Expand Up @@ -20714,7 +20714,7 @@
"name": "data",
"optional": true,
"readonly": false,
"type": "any[]",
"type": "any",
"description": "Row data."
},
{
Expand Down

1 comment on commit 9336cfb

@vercel
Copy link

@vercel vercel bot commented on 9336cfb Aug 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.