[turbolizer] Display labels when they're at most 40 chars, not 30.
BUG= R=danno Review-Url: https://codereview.chromium.org/2232933002 Cr-Commit-Position: refs/heads/master@{#38562}
This commit is contained in:
parent
a9fe26ef2e
commit
1cefcd4db1
@ -63,7 +63,7 @@ var Node = {
|
||||
},
|
||||
getDisplayLabel: function() {
|
||||
var result = this.id + ":" + this.label;
|
||||
if (result.length > 30) {
|
||||
if (result.length > 40) {
|
||||
return this.id + ":" + this.opcode;
|
||||
} else {
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user