Skip to content

Commit 9e26497

Browse files
author
Olivier Dufour
committed
fix batch size number type
1 parent 0aa96ed commit 9e26497

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/data-export.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2133,7 +2133,7 @@ class App extends React.Component {
21332133
}
21342134
onBatchSizeChange(e){
21352135
let {model} = this.props;
2136-
model.batchSize = e.target.value;
2136+
model.batchSize = new Number(e.target.value);
21372137
model.didUpdate();
21382138
}
21392139
componentDidMount() {

0 commit comments

Comments
 (0)