From 201bb8ca465934f1918d8d3fbe70a10a199ae098 Mon Sep 17 00:00:00 2001 From: CooperWang0912 Date: Fri, 31 Jul 2026 15:53:32 +0800 Subject: [PATCH] Added None Empty Check --- archinstall/tui/components.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/tui/components.py b/archinstall/tui/components.py index 8d71c873..b899c91b 100644 --- a/archinstall/tui/components.py +++ b/archinstall/tui/components.py @@ -67,7 +67,7 @@ def _get_status_prefix(item: MenuItem) -> str: if item.read_only or is_special_key: return '' - if item.has_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] '