Skip to content

Commit

Permalink
fix(AnalyticalTable): prevent event bubbling of ui5 controls (#659)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas742 authored Aug 19, 2020
1 parent 5c0da16 commit 44bedf8
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,18 @@ const tagNamesWhichShouldNotSelectARow = new Set([
'UI5-BUTTON',
'UI5-CHECKBOX',
'UI5-COMBOBOX',
'UI5-DATEPICKER',
'UI5-MULTI-COMBOBOX',
'UI5-SELECT',
'UI5-RADIOBUTTON',
'UI5-SEGMENTEDBUTTON',
'UI5-SWITCH',
'UI5-TOGGLEBUTTON'
'UI5-TOGGLEBUTTON',
'UI5-DATE-PICKER',
'UI5-DATERANGE-PICKER',
'UI5-DATETIME-PICKER',
'UI5-DURATION-PICKER',
'UI5-TIME-PICKER',
'UI5-FILE-UPLOADER'
]);

const getRowProps = (rowProps, { row, instance }) => {
Expand Down

0 comments on commit 44bedf8

Please sign in to comment.