mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-09 04:25:38 +00:00
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:
parent
90a8c552f6
commit
08a02a5259
@ -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 = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user