Index: dashboard/dashboard/elements/bug-info-span.html |
diff --git a/dashboard/dashboard/elements/bug-info-span.html b/dashboard/dashboard/elements/bug-info-span.html |
index 28775c4fe7265b8a60756c63af3108c029886b4e..e71476954f61dd1f53111a8c118b4e28abb9ca9e 100644 |
--- a/dashboard/dashboard/elements/bug-info-span.html |
+++ b/dashboard/dashboard/elements/bug-info-span.html |
@@ -47,12 +47,9 @@ TODO(qyearsley): Expand this element and use it in chart-tooltip. |
computeIsPositive: n => n > 0, |
statusString: function() { |
- if (this.bugId == -1) |
- return 'Invalid'; |
- if (this.bugId == -2) |
- return 'Ignored'; |
- if (this.recovered) |
- return 'Recovered'; |
+ if (this.bugId == -1) return 'Invalid'; |
+ if (this.bugId == -2) return 'Ignored'; |
+ if (this.recovered) return 'Recovered'; |
return ''; |
} |
}); |