aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_token.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bridge_token.go')
-rw-r--r--commands/bridge_token.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/commands/bridge_token.go b/commands/bridge_token.go
index 52dea9a9..cb9754c3 100644
--- a/commands/bridge_token.go
+++ b/commands/bridge_token.go
@@ -59,14 +59,13 @@ func runTokenBridge(cmd *cobra.Command, args []string) error {
for _, token := range tokens {
valueFmt := text.LeftPadMaxLine(token.Value, 20, 0)
- targetFmt := text.LeftPadMaxLine(token.Target, 10, 0)
+ targetFmt := text.LeftPadMaxLine(token.Target, 8, 0)
scopesFmt := text.LeftPadMaxLine(strings.Join(token.Scopes, ","), 20, 0)
- fmt.Printf("%s %s %s %s %s\n",
- colors.Cyan(token.Id),
+ fmt.Printf("%s %s %s %s\n",
+ valueFmt,
colors.Magenta(targetFmt),
colors.Yellow(token.Global),
- valueFmt,
scopesFmt,
)
}