pass the limit as int from javascript

This commit is contained in:
Jacky 2018-03-02 17:09:33 -05:00 committed by Antonin Delpeuch
parent bce7f097dd
commit 1866f9691d

View File

@ -316,7 +316,7 @@ ReconStandardServicePanel.prototype.start = function() {
type: (type) ? { id: type.id, name: type.name } : null, type: (type) ? { id: type.id, name: type.name } : null,
autoMatch: this._elmts.automatchCheck[0].checked, autoMatch: this._elmts.automatchCheck[0].checked,
columnDetails: columnDetails, columnDetails: columnDetails,
limit: this._elmts.maxCandidates[0].value limit: parseInt(this._elmts.maxCandidates[0].value) || 0
}) })
}, },
{ cellsChanged: true, columnStatsChanged: true } { cellsChanged: true, columnStatsChanged: true }