keep max rounds around

This commit is contained in:
ntr
2019-06-10 20:07:12 +10:00
parent f22a033230
commit 9a6d75486e
2 changed files with 18 additions and 10 deletions
+3 -3
View File
@@ -37,9 +37,9 @@ function Instance(args) {
if (!instance) return false;
const instanceClasses = `instance ${nav === 'constructs' ? 'constructs-visible' : ''}`;
const lobbyInfo = (instance.phase === 'Lobby')
? <ScoreBoard />
: null;
const lobbyInfo = (instance.phase === 'InProgress')
? null
: <ScoreBoard />;
return (
<main class={instanceClasses} onMouseOver={() => setInfo(null)} >