summaryrefslogtreecommitdiff
path: root/webapp/src/components
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-12-22 19:09:17 -0500
committerKjetil Orbekk <kj@orbekk.com>2022-12-22 19:09:17 -0500
commit58aa2e4764f90528270ae5b9a61de576260e5483 (patch)
treeb8b9ce071637fa66335108e7430cce849f872933 /webapp/src/components
parenta60500b47c81d15c9b970b58b1c871821dbe934a (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.rs2
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>