From b373ab6d0d6709cfc82e65c2f619e7e2ee175ed9 Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Fri, 2 Mar 2018 23:46:41 +0000 Subject: [PATCH] Revert "pass the limit as int from javascript" --- .../core/scripts/reconciliation/standard-service-panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/webapp/modules/core/scripts/reconciliation/standard-service-panel.js b/main/webapp/modules/core/scripts/reconciliation/standard-service-panel.js index ae5ca3d7a..72236edf2 100644 --- a/main/webapp/modules/core/scripts/reconciliation/standard-service-panel.js +++ b/main/webapp/modules/core/scripts/reconciliation/standard-service-panel.js @@ -316,7 +316,7 @@ ReconStandardServicePanel.prototype.start = function() { type: (type) ? { id: type.id, name: type.name } : null, autoMatch: this._elmts.automatchCheck[0].checked, columnDetails: columnDetails, - limit: parseInt(this._elmts.maxCandidates[0].value) || 0 + limit: this._elmts.maxCandidates[0].value }) }, { cellsChanged: true, columnStatsChanged: true }