From c6edf2a92c6476dca46eb013641453a6e8e0738c Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Sat, 3 Feb 2024 13:41:21 -0600 Subject: [PATCH] why does the shell list never show --- site/src/components/GameStatus.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/site/src/components/GameStatus.vue b/site/src/components/GameStatus.vue index 4abdf39..2d48acc 100644 --- a/site/src/components/GameStatus.vue +++ b/site/src/components/GameStatus.vue @@ -75,6 +75,7 @@ const shellList = computed(() => { } const l = [...Array(props.game.live).fill('🟥'), ...Array(props.game.blank).fill('🟦')]; shuffle(l); + console.log('compute shell list', props.game, l) return [...l, ...Array(8 - props.game.live - props.game.blank).fill('⬛')]; });