diff options
Diffstat (limited to 'static/panes/compiler.js')
-rw-r--r-- | static/panes/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/panes/compiler.js b/static/panes/compiler.js index 6138664a9..fa58a708f 100644 --- a/static/panes/compiler.js +++ b/static/panes/compiler.js @@ -1120,7 +1120,7 @@ Compiler.prototype.handleCompileRequestAndResult = function (request, result, ca infoLabelText = ' - ' + timeTaken + 'ms'; } - if (result.asmSize !== undefined) { + if (result.asmSize) { infoLabelText += ' (' + result.asmSize + 'B)'; } |