Skip to content

Commit

Permalink
Adjust capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Dec 24, 2024
1 parent 21843ac commit dee67f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions home/code_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"),
Expand Down

0 comments on commit dee67f8

Please sign in to comment.