Skip to content

Commit 51a3478

Browse files
authored
Merge pull request #186 from vdice/fix/app-info-description
fix(apps.rs): fix formatting for description
2 parents 85b2d95 + e4b6cf4 commit 51a3478

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/apps.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ impl InfoCommand {
9393
let (current_domain, in_progress_domain) = domains_current_and_in_progress(&app);
9494

9595
println!("Name: {}", &app.name);
96-
print_if_present("Description", app.description.as_ref());
96+
print_if_present("Description: ", app.description.as_ref());
9797
print_if_present("URL: https://", current_domain);
9898
if let Some(domain) = in_progress_domain {
9999
println!("Validation for {} is in progress", domain);

0 commit comments

Comments
 (0)