From c5c2b5297dbca9e96a5414b2250a63d38fda5b1d Mon Sep 17 00:00:00 2001 From: CooperWang0912 Date: Fri, 31 Jul 2026 16:13:57 +0800 Subject: [PATCH] Revert "Update components.py" This reverts commit 4a48510f8f7d0e858b0d59c6a083ec4ec75a675d. --- archinstall/tui/components.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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] '