Skip to content

Commit a6f3b5b

Browse files
author
vsilent
committed
Merge remote-tracking branch 'origin/dev' into cli-agent-subcommand
2 parents e9a425c + 9196a10 commit a6f3b5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/console/commands/cli/list.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,15 +316,15 @@ impl CallableTrait for ListCloudsCommand {
316316
for c in &clouds {
317317
let has_token = if c.cloud_token.is_some() { "✓" } else { "-" };
318318
let has_key = if c.cloud_key.is_some() { "✓" } else { "-" };
319-
let has_secret = if c.cloud_secret.is_some() { "✓" } else { "-" };
319+
let secret_indicator = "*";
320320
println!(
321321
"{:<6} {:<24} {:<12} {:<10} {:<10} {:<10}",
322322
c.id,
323323
truncate(&c.name, 22),
324324
&c.provider,
325325
has_token,
326326
has_key,
327-
has_secret,
327+
secret_indicator,
328328
);
329329
}
330330

0 commit comments

Comments
 (0)