Skip to content

Commit

Permalink
Change name in tabs in MultiRunManager
Browse files Browse the repository at this point in the history
  • Loading branch information
basnijholt committed Nov 5, 2024
1 parent def6bef commit 802f3f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adaptive_scheduler/_server_support/multi_run_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def _create_widget(self) -> ipw.VBox:
children = list(self._info_widgets.values())
self._tab_widget.children = children
for i, name in enumerate(self.run_managers.keys()):
self._tab_widget.set_title(i, f"RunManager: {name}")
self._tab_widget.set_title(i, name)

self._update_all_button = ipw.Button(
description="Update All",
Expand Down

0 comments on commit 802f3f4

Please sign in to comment.