From d7d912b1feea6d53cccdc70eb0232d96d5e1d528 Mon Sep 17 00:00:00 2001 From: CooperWang0912 Date: Fri, 31 Jul 2026 16:14:02 +0800 Subject: [PATCH] Revert "Added None Empty Check" This reverts commit 201bb8ca465934f1918d8d3fbe70a10a199ae098. --- 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 b899c91b..8d71c873 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() and "None" not in str(item.value) and "[]" not in str(item.value): + if item.has_value(): return ' ' else: return '[bold yellow]![/bold yellow] '