diff --git a/client/src/components/game/header.rs b/client/src/components/game/header.rs index 7b0ac1b..04380be 100644 --- a/client/src/components/game/header.rs +++ b/client/src/components/game/header.rs @@ -8,7 +8,6 @@ fn Meta() -> impl IntoView { view! {

Name: {move || game_meta().unwrap().name}

-

Host: {move || game_meta().unwrap().host}

White Deck: {move || game_meta().unwrap().white_count}

White Discard: {move || game_meta().unwrap().white_discard_count}

Black Deck: {move || game_meta().unwrap().black_count}

@@ -47,12 +46,18 @@ fn Scoreboard() -> impl IntoView { {if game_meta().unwrap().czar == player.name { - "👑 " + "👑" } else { "" }} - {player.name} + + {if game_meta().unwrap().host == player.name { + "⚜ " + } else { + "" + }} {player.name} + {player.score} }