diff --git a/archinstall/tui/components.py b/archinstall/tui/components.py index 669fbaff..b899c91b 100644 --- a/archinstall/tui/components.py +++ b/archinstall/tui/components.py @@ -67,9 +67,7 @@ def _get_status_prefix(item: MenuItem) -> str: if item.read_only or is_special_key: return '' - if item.has_value() and 'None' not in str(item.value) and '[]' not in str(item.value): - return ' ' - elif 'Configuration' not in str(item.value): + if item.has_value() and "None" not in str(item.value) and "[]" not in str(item.value): return ' ' else: return '[bold yellow]![/bold yellow] '