diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-11-13 16:07:27 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-11-13 16:07:27 -0500 |
commit | d4650a3160d52d289686fb59efbf8f0a436b71eb (patch) | |
tree | 0b38d0143824a3a7cab83e189fe1a2302f9685a7 /webapp/src/components/error_info.rs | |
parent | 0012c25c9ab94754f3d6396e91dc3ae63d19ac9c (diff) |
Add create/leave table options
Diffstat (limited to 'webapp/src/components/error_info.rs')
-rw-r--r-- | webapp/src/components/error_info.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/components/error_info.rs b/webapp/src/components/error_info.rs index 4ec5ba9..cb5a9c1 100644 --- a/webapp/src/components/error_info.rs +++ b/webapp/src/components/error_info.rs @@ -9,9 +9,9 @@ pub fn error_info(props: &ErrorInfoProperties) -> Html { html! { <div class="error-box"> <p> - { format!("Error: {}. ", props.message) } + { format!("Error: {}. ", props.message) } <button onclick={reload}>{ "Reload" }</button> - </p> + </p> </div> } } |