1
0
mirror of https://github.com/pcvolkmer/osc-variant.git synced 2025-07-03 09:12:54 +00:00

Add menu category changes

This commit is contained in:
2023-06-05 14:42:23 +02:00
parent c3895c8eaf
commit f9b9c6d312
4 changed files with 88 additions and 0 deletions

View File

@ -172,6 +172,14 @@ impl DataForm {
}
}
});
if let Some(menu_category) = &profile_form.menu_category {
self.menu_category = Some(MenuCategory {
name: menu_category.name.clone(),
position: menu_category.position.clone(),
column: menu_category.column.clone(),
});
}
})
}
});

View File

@ -181,6 +181,14 @@ impl Unterformular {
}
}
});
if let Some(menu_category) = &profile_form.menu_category {
self.menu_category = Some(MenuCategory {
name: menu_category.name.clone(),
position: menu_category.position.clone(),
column: menu_category.column.clone(),
});
}
})
}
});