diff --git a/client/src/components/game/header.rs b/client/src/components/game/header.rs
index e82a553..664d31b 100644
--- a/client/src/components/game/header.rs
+++ b/client/src/components/game/header.rs
@@ -28,7 +28,6 @@ fn Scoreboard() -> impl IntoView {
|
|
"Score" |
- |
{game_meta()
@@ -41,8 +40,10 @@ fn Scoreboard() -> impl IntoView {
{if game_meta().unwrap().czar == player.name {
"👑"
+ } else if player.submitted {
+ "🟢"
} else {
- ""
+ "âš«"
}}
|
@@ -53,7 +54,6 @@ fn Scoreboard() -> impl IntoView {
}} {player.name}
|
{player.score} |
- {if player.submitted { "🟢" } else { "⚫" }} |
}
})