Skip to content

Commit

Permalink
Make column titles bold
Browse files Browse the repository at this point in the history
  • Loading branch information
insolor committed Jul 21, 2024
1 parent 6a9ec41 commit b232d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package_build/file_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def show_file_list(root_dir: Path) -> None:
return

column1, column2, column3 = st.columns([3, 2, 1], vertical_alignment="center")
column1.write(_("Package name"))
column2.write(_("When created"))
column1.write("**{}**".format(_("Package name")))
column2.write("**{}**".format(_("When created")))

for package_path in sorted(file_list):
column1, column2, column3 = st.columns([3, 2, 1], vertical_alignment="center")
Expand Down

0 comments on commit b232d92

Please sign in to comment.