Fix #15741 - Fatal javascript error on clicking "Pick from Central Columns"

Signed-off-by: Yash Bothra <yashrajbothra786@gmail.com>
This commit is contained in:
Yash Bothra 2020-01-11 16:01:33 +01:00 committed by William Desportes
parent 33c6a1c17a
commit 07226e1160
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -3561,7 +3561,7 @@ AJAX.registerOnload('functions.js', function () {
url: href,
data: params,
success: function (data) {
centralColumnList[db + '_' + table] = JSON.parse(data.message);
centralColumnList[db + '_' + table] = data.message;
},
async:false
});