Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(react-grid): add TableGroupRow as optional dependency for TableFixedColumns #2112

Merged
merged 3 commits into from Jun 25, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -32,6 +32,7 @@ import { TableFixedColumns } from '@devexpress/dx-react-grid';
- [TableSelection](table-selection.md) [Optional]
- [TableSummaryRow](table-summary-row.md) [Optional]
- [TableTreeColumn](table-tree-column.md) [Optional]
- [TableGroupRow](table-group-row.md) [Optional]

### Properties

Expand Down
1 change: 1 addition & 0 deletions packages/dx-react-grid/src/plugins/table-fixed-columns.tsx
Expand Up @@ -39,6 +39,7 @@ const pluginDependencies = [
{ name: 'TableSelection', optional: true },
{ name: 'TableSummaryRow', optional: true },
{ name: 'TableTreeColumn', optional: true },
{ name: 'TableGroupRow', optional: true },
Copy link
Contributor

Choose a reason for hiding this comment

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

Let's move it between the TableFilterRow and the TableHeaderRow plugins to preserve alphabetic order

];

// tslint:disable-next-line: max-line-length
Expand Down