diff 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> } } |