Bug 1626189 - Broken tooltips on WS payload in Messages panel r=Honza

Differential Revision: https://phabricator.services.mozilla.com/D70643

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Kartik Choudhary 2020-04-13 15:07:23 +00:00
parent 90a8c552f6
commit 08a02a5259

View File

@ -5,12 +5,12 @@
"use strict";
/**
* Returns first 1024 characters of value for use as a tooltip.
* Returns first 128 characters of value for use as a tooltip.
* @param object
* @returns {*}
*/
function limitTooltipLength(object) {
return object.length > 1024 ? object.substring(0, 1024) + "…" : object;
return object.length > 128 ? object.substring(0, 128) + "…" : object;
}
module.exports = {