From 4a48510f8f7d0e858b0d59c6a083ec4ec75a675d Mon Sep 17 00:00:00 2001 From: CooperWang0912 Date: Fri, 31 Jul 2026 16:12:03 +0800 Subject: [PATCH] Update components.py --- archinstall/tui/components.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/archinstall/tui/components.py b/archinstall/tui/components.py index b899c91b..669fbaff 100644 --- a/archinstall/tui/components.py +++ b/archinstall/tui/components.py @@ -67,7 +67,9 @@ 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): + 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): return ' ' else: return '[bold yellow]![/bold yellow] '