Compare commits

..

No commits in common. "97612a13ac8823d39665ce1856b50bd049d682e2" and "4e064e4b010f288bf4a69f4fd9b65efed377d806" have entirely different histories.

View File

@ -143,9 +143,12 @@ function findMaxLabelWidth(rows) {
if (!opt.label) return 0; if (!opt.label) return 0;
if (opt.label.length > max) { if (opt.label.length > max) {
max = opt.label.length; max = opt.label.length;
<<<<<<< HEAD
if (opt.label.includes('(')) { if (opt.label.includes('(')) {
max = max - 3; max = max - 3;
} }
=======
>>>>>>> projects/mesxc-test
} }
}); });
}); });