diff --git a/Cargo.toml b/Cargo.toml index d018a3b..da4736a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bootstrap-rs" -version = "0.2.1" +version = "0.2.2" authors = ["Thomas Gideon "] edition = "2018" diff --git a/src/button/mod.rs b/src/button/mod.rs index ca4ed40..922e3c9 100644 --- a/src/button/mod.rs +++ b/src/button/mod.rs @@ -37,7 +37,7 @@ impl Component for ButtonGroup { impl ButtonGroup { fn class(&self) -> String { if self.props.class.is_empty() { - "btn-grp".into() + "btn-group".into() } else { format!("btn-group {}", self.props.class) }