Skip to content

Commit

Permalink
add space in node info bar
Browse files Browse the repository at this point in the history
  • Loading branch information
pdxlocations committed Feb 2, 2025
1 parent 3cb265c commit 9621bb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/curses_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def draw_node_details():

nodestr = ""
width = function_win.getmaxyx()[1]
node_details_list = [f"{node['user']['longName']}"
node_details_list = [f"{node['user']['longName']} "
if 'user' in node and 'longName' in node['user'] else "",
f"({node['user']['shortName']})"
if 'user' in node and 'shortName' in node['user'] else "",
Expand Down

0 comments on commit 9621bb0

Please sign in to comment.