Skip to content

Commit

Permalink
#3026 [Docs] TypeError in In-Memory Table - Selection (#3027)
Browse files Browse the repository at this point in the history
  • Loading branch information
varunsharma27 authored Mar 13, 2020
1 parent 2226ab4 commit 19971ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-docs/src/views/tables/in_memory/in_memory_selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ export class Table extends Component {
}

renderToolsLeft() {
const selection = this.state.control_columns;
const selection = this.state.selection;

if (!selection || selection.length === 0) {
if (selection.length === 0) {
return;
}

Expand Down

0 comments on commit 19971ab

Please sign in to comment.