🚚 Rename grid handles

This commit is contained in:
Manuel Cillero 2023-08-11 10:44:08 +02:00
parent 5f02ef7f2c
commit 8934330523
4 changed files with 9 additions and 9 deletions

View file

@ -87,7 +87,7 @@ impl ThemeTrait for Bulmix {
},
);
}
grid::COMPONENT_COLUMN => {
grid::COMPONENT_GRID_COLUMN => {
let col = component_mut::<grid::Column>(component);
col.alter_classes(
ClassesOp::SetDefault,
@ -113,7 +113,7 @@ impl ThemeTrait for Bulmix {
.as_str(),
);
}
grid::COMPONENT_ROW => {
grid::COMPONENT_GRID_ROW => {
let row = component_mut::<grid::Row>(component);
row.alter_classes(ClassesOp::SetDefault, "columns");
}