Update frappe/public/js/frappe/form/controls/table.js

Co-Authored-By: Shivam Mishra <scmmishra@users.noreply.github.com>
This commit is contained in:
Anurag Mishra 2019-07-03 12:16:51 +05:30 committed by GitHub
parent 570fd44248
commit 91d0ea010a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ frappe.ui.form.ControlTable = frappe.ui.form.Control.extend({
if (data.length === 1 & data[0].length === 1) return;
if (data.length > 100){
data = data.slice(0, 100);
frappe.msgprint(__('for performance, only the first 100 rows processed!'));
frappe.msgprint(__('For performance, only the first 100 rows were processed.'));
}
var fieldnames = [];
var get_field = function(name_or_label){