From 973b7b5f217a400757905cbdc64bf26b8e9fdb66 Mon Sep 17 00:00:00 2001 From: Jacky Date: Fri, 2 Mar 2018 17:09:33 -0500 Subject: [PATCH] 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 72236edf2..ae5ca3d7a 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: this._elmts.maxCandidates[0].value + limit: parseInt(this._elmts.maxCandidates[0].value) || 0 }) }, { cellsChanged: true, columnStatsChanged: true }