Skip to content

Commit

Permalink
Merge pull request #103 from dancespiele/development
Browse files Browse the repository at this point in the history
Release v0.9.4
  • Loading branch information
dancespiele authored Jul 14, 2021
2 parents f6e07b4 + 7927d8b commit b105ddd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions crate/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
name = "yew_style_page"
readme = "./README.md"
repository = "https://github.com/spielrs/yew-styles-page.git"
version = "0.9.3"
version = "0.9.4"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion crate/yew_styles/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew_styles"
version = "0.9.3"
version = "0.9.4"
description = "Framework styles for yew"
documentation = "https://docs.rs/crate/yew_styles"
authors = ["Francisco Jesus Navarro Cortes <[email protected]>"]
Expand Down
6 changes: 3 additions & 3 deletions crate/yew_styles/src/components/navbar/navbar_component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,9 @@ impl Component for Navbar {
{get_branch(self.props.branch.clone())}
</NavbarContainer>
{if !self.display_menu {
html!{<>{self.props.children.clone()}</>}
}else {
html!{}
self.props.children.clone()
} else {
Children::new(vec![])
} }
</div>
</>
Expand Down
4 changes: 2 additions & 2 deletions crate/yew_styles/src/components/navbar/navbar_container.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ pub struct Props {
/// <span>{"Shop"}</span>
/// </NavbarItem>
/// <NavbarItem
/// onclick_signal=link.callback(move |_| Msg::ChangeMenu(String::from("About us")))>
/// onclick_signal=link.callback(move |_| Msg::ChangeMenu(String::from("About us")))>
/// <span>{"About us"}</span>
/// </NavbarItem>
/// <NavbarItem
/// onclick_signal=link.callback(move |_| Msg::ChangeMenu(String::from("Contact")))>
/// onclick_signal=link.callback(move |_| Msg::ChangeMenu(String::from("Contact")))>
/// <span>{"Contact"}</span>
/// </NavbarItem>
/// </NavbarContainer>
Expand Down

0 comments on commit b105ddd

Please sign in to comment.