diff --git a/bard/Cargo.toml b/bard/Cargo.toml index f05af0d..4e8d16e 100644 --- a/bard/Cargo.toml +++ b/bard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bard" -version = "0.0.8" +version = "0.0.9" edition = "2024" description = "Dioxus components that will display a Tavern blogging system Blog." repository = "/CyberMages/tavern" diff --git a/bard/src/components.rs b/bard/src/components.rs index 9fa3803..2fe64b2 100644 --- a/bard/src/components.rs +++ b/bard/src/components.rs @@ -323,6 +323,7 @@ pub fn BlogPost(slug: String, children: Element) -> Element rsx! { p { "Unable to show desired post." } + p { "Trying to get: {slug}" } p { "{e}" } } }