🚧 Code tweaks

This commit is contained in:
Manuel Cillero 2024-04-29 00:00:42 +02:00
parent b5fc06e84e
commit 928b3f91b6
6 changed files with 7 additions and 7 deletions

View file

@ -22,7 +22,7 @@ impl ComponentTrait for Block {
fn setup_before_prepare(&mut self, _cx: &mut Context) {
self.alter_classes(
ClassesOp::Prepend,
[String::from("block__container"), self.style().to_string()].join(" "),
["block__container".to_string(), self.style().to_string()].join(" "),
);
}