mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-29 14:19:48 -04:00
Fix #3050: undefined simulation debugging tooltips
This commit is contained in:
parent
0492d455b0
commit
3253ae456e
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ module.exports = class MyMatchesTabView extends CocoView
|
|||
stale: match.date < submitDate
|
||||
fresh: fresh
|
||||
codeLanguage: match.codeLanguage
|
||||
simulator: JSON.stringify(match.simulator) + ' | seed ' + match.randomSeed
|
||||
simulator: if match.simulator then JSON.stringify(match.simulator) + ' | seed ' + match.randomSeed else ''
|
||||
}
|
||||
|
||||
for team in @teams
|
||||
|
|
Loading…
Add table
Reference in a new issue