Merge branch 'feature/workspaces' of github.com:ONLYOFFICE/AppServer into feature/workspaces

This commit is contained in:
Vladislav Makhov 2021-03-19 18:04:43 +03:00
commit 425f182b8d

View File

@ -78,6 +78,7 @@ class Row extends React.Component {
element,
indeterminate,
onSelect,
onRowContextClick,
sectionWidth,
} = this.props;
@ -105,7 +106,10 @@ class Row extends React.Component {
onSelect && onSelect(e.target.checked, data);
};
const getOptions = () => contextOptions;
const getOptions = () => {
onRowContextClick && onRowContextClick();
return contextOptions;
};
return (
<StyledRow ref={this.rowRef} {...this.props}>
@ -173,6 +177,7 @@ Row.propTypes = {
indeterminate: PropTypes.bool,
/** when selecting row element. Returns data value. */
onSelect: PropTypes.func,
onRowContextClick: PropTypes.func,
/** Accepts css style */
style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
sectionWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),