Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f534b30

Browse files
Fix onSort is not a function issue
1 parent 1aa4bbc commit f534b30

File tree

1 file changed

+3
-3
lines changed
  • packages/react-bootstrap-table2/src/contexts

1 file changed

+3
-3
lines changed

‎packages/react-bootstrap-table2/src/contexts/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ const withContext = Base =>
8585
}
8686

8787
UNSAFE_componentWillReceiveProps(nextProps) {
88-
if (nextProps.columns.filter(col => col.sort).length > 0 && !this.SortContext) {
88+
if (nextProps.columns.filter(col => col.sort).length <= 0) {
89+
this.SortContext = null;
90+
} else if (!this.SortContext) {
8991
this.SortContext = createSortContext(
9092
dataOperator, this.isRemoteSort, this.handleRemoteSortChange);
91-
} else {
92-
this.SortContext = null;
9393
}
9494
if (!nextProps.pagination && this.props.pagination) {
9595
this.PaginationContext = null;

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /