From b92c70b67d6976dfdcfeed9a639110fdaa084973 Mon Sep 17 00:00:00 2001 From: Aurelia Date: Thu, 3 Sep 2026 14:47:25 +0200 Subject: [PATCH] [CLI] Forget local device displays the full ID. --- cli/src/ui/compat.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/cli/src/ui/compat.rs b/cli/src/ui/compat.rs index a962070563c..db155c2e8b8 100644 --- a/cli/src/ui/compat.rs +++ b/cli/src/ui/compat.rs @@ -49,14 +49,7 @@ impl CLIDisplay for AvailableDeviceDisplay { write!( w, "{dev_id} - {org_id}: {handle} @ {label} ({ty})", - dev_id = fmt.wrap_in_color( - Color::Yellow, - format_args!( - "{id:.prec$}", - id = self.device_id.hex(), - prec = crate::utils::MINIMAL_SHORT_ID_SIZE - ) - ), + dev_id = fmt.wrap_in_color(Color::Yellow, self.device_id.hex()), org_id = self.organization_id, handle = self.human_handle, label = self.device_label,