diff --git a/home/code_setup.py b/home/code_setup.py index 299ad54..aa71881 100644 --- a/home/code_setup.py +++ b/home/code_setup.py @@ -21,8 +21,8 @@ def fetch_code_data(): codes: list[orm.Code] = orm.Code.collection.all() return [ { - "Full Label": f"{code.label}@{code.computer.label}", - "Executable Path": code.get_executable().as_posix(), + "Full label": f"{code.label}@{code.computer.label}", + "Executable path": code.get_executable().as_posix(), "Hide": code.is_hidden, } for code in codes @@ -222,7 +222,7 @@ def render_table_with_filters(): ) show_all_button = ipw.Button( - description="Unhide All", + description="Unhide all", tooltip="Unhide all hidden codes", button_style="primary", layout=ipw.Layout(margin="0", width="105px"),