Some cleanup/small fixes.

This commit is contained in:
Tomas Bures 2019-08-23 13:50:43 +02:00
parent 5abf100776
commit 427f0ec2c2
7 changed files with 16 additions and 21 deletions

View file

@ -155,7 +155,7 @@ class Table extends Component {
for (const row of response.data) {
const key = row[this.props.selectionKeyIndex];
if (oldSelectionMap.has(key)) {
this.selectionMap.set(key, row)
this.selectionMap.set(key, row);
}
}