From e4b6cf4bdedc71fcd5ca52ac7fbf1c1971e07347 Mon Sep 17 00:00:00 2001 From: Vaughn Dice Date: Tue, 19 Mar 2024 10:30:35 -0600 Subject: [PATCH] fix(apps.rs): fix formatting for description Signed-off-by: Vaughn Dice --- src/commands/apps.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/apps.rs b/src/commands/apps.rs index 6d22730..782f7d7 100644 --- a/src/commands/apps.rs +++ b/src/commands/apps.rs @@ -93,7 +93,7 @@ impl InfoCommand { let (current_domain, in_progress_domain) = domains_current_and_in_progress(&app); println!("Name: {}", &app.name); - print_if_present("Description", app.description.as_ref()); + print_if_present("Description: ", app.description.as_ref()); print_if_present("URL: https://", current_domain); if let Some(domain) = in_progress_domain { println!("Validation for {} is in progress", domain);