From 68830b9377ad19be409acf75068553fcbb5e6e19 Mon Sep 17 00:00:00 2001 From: CooperWang0912 Date: Fri, 31 Jul 2026 14:57:08 +0800 Subject: [PATCH] Fallback to String Checks --- 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 71180e44..8d71c873 100644 --- a/archinstall/tui/components.py +++ b/archinstall/tui/components.py @@ -62,7 +62,7 @@ def _get_status_prefix(item: MenuItem) -> str: - ! (Yellow) for unconfigured items """ - is_special_key = '__config__' in item.key or item.key == '← ' + tr('Back') + is_special_key = item.text in ['← ' + tr('Back'), tr('Save configuration'), tr('Install'), tr('Abort')] if item.read_only or is_special_key: return ''