Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
svartkanin committed Nov 7, 2024
1 parent 52a67fa commit 9fd2567
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions archinstall/tui/menu_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,7 @@ def get_item_text(self, item: MenuItem) -> str:
if item.get_value() is not False:
text = f'{text}{spacing}{Chars.Check}'
else:
if item.mandatory:
text = f'{text}{spacing}{Chars.Cross}'
else:
text = item.text
text = item.text

if default_text:
text = f'{text} {default_text}'
Expand Down

0 comments on commit 9fd2567

Please sign in to comment.