fix round watcher follow-up before game ends

pull/5137/head
Thibault Duplessis 2019-05-22 19:59:28 +02:00
parent 03c6aa3737
commit 74db64fb9f
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export function renderTableEnd(ctrl: RoundController) {
export function renderTableWatch(ctrl: RoundController) {
return renderTableWith(ctrl, [
isLoading(ctrl) ? loader() : button.watcherFollowUp(ctrl)
isLoading(ctrl) ? loader() : (game.playable(ctrl.data) ? undefined : button.watcherFollowUp(ctrl))
]);
}