fix(menu): only show the title, not the name of the entry

This commit is contained in:
2025-11-01 21:36:17 -04:00
parent f6441b5694
commit 5033bc7bf4

View File

@@ -133,7 +133,7 @@ fn select_with_input<'a>(
info!("Boot Menu:");
for (index, entry) in entries.iter().enumerate() {
let title = entry.context().stamp(&entry.declaration().title);
info!(" [{}] {} ({})", index, title, entry.name());
info!(" [{}] {}", index, title);
}
}