Bug 1645882 - Remove extra space in [F] tab tooltip, r=Gijs

Differential Revision: https://phabricator.services.mozilla.com/D80020
This commit is contained in:
Nika Layzell 2020-06-17 16:00:37 +00:00
parent e40f4cfba0
commit 4206cf7b5e

View File

@ -4984,7 +4984,11 @@
if (contentPid) {
label += " (pid " + contentPid + ")";
if (gFissionBrowser) {
label += " [F " + framePids.join(", ") + "]";
label += " [F";
if (framePids.length) {
label += " " + framePids.join(", ");
}
label += "]";
}
}
}