feat(mobile): add button to toggle sidebar

This commit is contained in:
Elian Doran
2024-12-28 14:09:50 +02:00
parent b00ca234f5
commit 857f33db08
4 changed files with 23 additions and 22 deletions

View File

@@ -12,7 +12,9 @@ export default class SidebarContainer extends FlexContainer {
super.doRender();
this.$widget.on("click", () => {
this.triggerEvent('activeScreenChanged', "detail");
this.triggerCommand('setActiveScreen', {
screen: "detail"
});
});
}