diff --git a/src/views/PlayView.vue b/src/views/PlayView.vue index 93659e7..c558957 100644 --- a/src/views/PlayView.vue +++ b/src/views/PlayView.vue @@ -129,8 +129,9 @@ const sections = computed(() => { PlayViewSection.EventLog, ] - if (isKnockout.value) { - // BUG: should always show standings if the main phase was round-robin or winner stays on + if (isKnockout.value && currentPhase.value?.id === mainPhase.value?.id) { + // we don't really care about the phase IDs both being undefined + // on the line above. relevantSections.splice(1, 1) } diff --git a/src/views/ResultsView.vue b/src/views/ResultsView.vue index 619584c..62401fb 100644 --- a/src/views/ResultsView.vue +++ b/src/views/ResultsView.vue @@ -1,21 +1,21 @@