Skip to content

Commit

Permalink
Change selection buttons to class view and session view
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Wallace committed Nov 8, 2024
1 parent d09bf85 commit 16bf7b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/daqconf/cider/app_structures/selection_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ class SelectionPanel(Static):

_current_menu = None
_saved_states = None
_menu_ids = {"Sort By Class" : "class-selection",
"Sort By Relationship" : "relation-selection"}
_menu_ids = {"Class View" : "class-selection",
"Session View" : "relation-selection"}

def compose(self) -> ComposeResult:
"""Compose the selection panel for use in the app
Expand Down
2 changes: 1 addition & 1 deletion python/daqconf/cider/widgets/selection_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def _build_tree(self):
if self._tree is not None:
self._tree.clear()

self._tree = Tree(f"Configuration:")
self._tree = Tree("Configuration:")
main_screen = self.app.get_screen("main")
self._controller = main_screen.query_one("ConfigurationController")

Expand Down

0 comments on commit 16bf7b0

Please sign in to comment.