Skip to content

Commit

Permalink
DON-460: Update clickable area for bpksectionItem (#1936)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgupta-skyscanner authored Apr 19, 2024
1 parent 2cab385 commit fa6c849
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ internal fun BpkSectionHeading(
internal fun BpkSectionItem(item: BpkItem, modifier: Modifier = Modifier, clickHandleScope: BpkClickHandleScope? = null) {
Row(
modifier = modifier
.fillMaxWidth()
.clickable {
item.onItemSelected()
clickHandleScope?.notifyClick()
},
}
.fillMaxWidth(),
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(BpkSpacing.Base),
) {
Expand Down

0 comments on commit fa6c849

Please sign in to comment.