diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-22 19:09:17 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-22 19:09:17 -0500 |
commit | 58aa2e4764f90528270ae5b9a61de576260e5483 (patch) | |
tree | b8b9ce071637fa66335108e7430cce849f872933 /webapp/src/components | |
parent | a60500b47c81d15c9b970b58b1c871821dbe934a (diff) |
Fixes to the engine enough that the random bot can finish a game
Diffstat (limited to 'webapp/src/components')
-rw-r--r-- | webapp/src/components/table.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/table.rs b/webapp/src/components/table.rs index fa21102..794785f 100644 --- a/webapp/src/components/table.rs +++ b/webapp/src/components/table.rs @@ -94,7 +94,7 @@ pub fn online_table(props: &OnlineTableProps) -> Html { html! { <> - p<>{ format!("This is table {}", props.table.id) }</p> + <>{ format!("This is table {}", props.table.id) }</p> <button onclick={leave_table}> { "Leave table" } </button> |