mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 19:11:09 +00:00
minor changes
This commit is contained in:
parent
ccde4b4666
commit
e0cc23c0bc
3 changed files with 2 additions and 15 deletions
|
@ -140,7 +140,7 @@ async fn federation_routes_middleware<B>(request: Request<B>, next: Next<B>) ->
|
||||||
uri = format!("{FEDERATION_ROUTES_PREFIX}{uri}");
|
uri = format!("{FEDERATION_ROUTES_PREFIX}{uri}");
|
||||||
}
|
}
|
||||||
// drop trailing slash
|
// drop trailing slash
|
||||||
if uri.ends_with('/') {
|
if uri.ends_with('/') && uri.len() > 1 {
|
||||||
uri.pop();
|
uri.pop();
|
||||||
}
|
}
|
||||||
parts.uri = uri.parse().unwrap();
|
parts.uri = uri.parse().unwrap();
|
||||||
|
|
|
@ -3,16 +3,3 @@ pub mod app;
|
||||||
mod components;
|
mod components;
|
||||||
pub mod error;
|
pub mod error;
|
||||||
pub mod pages;
|
pub mod pages;
|
||||||
|
|
||||||
#[cfg(feature = "hydrate")]
|
|
||||||
#[wasm_bindgen::prelude::wasm_bindgen]
|
|
||||||
pub fn hydrate() {
|
|
||||||
/*
|
|
||||||
_ = console_log::init_with_level(log::Level::Debug);
|
|
||||||
console_error_panic_hook::set_once();
|
|
||||||
leptos::mount_to_body(move || {
|
|
||||||
view! { <App/> }
|
|
||||||
});
|
|
||||||
info!("test 1");
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ pub fn ReadArticle() -> impl IntoView {
|
||||||
{move || article.get().map(|article|
|
{move || article.get().map(|article|
|
||||||
view! {
|
view! {
|
||||||
<div class="item-view">
|
<div class="item-view">
|
||||||
<h1>{article.article.title}</h1>
|
<h1>{article.article.title.replace('_', " ")}</h1>
|
||||||
<Show when=move || global_state.with(|state| state.my_profile.is_some())>
|
<Show when=move || global_state.with(|state| state.my_profile.is_some())>
|
||||||
<button on:click=move |_| {
|
<button on:click=move |_| {
|
||||||
set_count.update(|n| *n += 1);
|
set_count.update(|n| *n += 1);
|
||||||
|
|
Loading…
Reference in a new issue