aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/bridge_token.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bridge_token.go b/commands/bridge_token.go
index f33ee3e3..cdae0664 100644
--- a/commands/bridge_token.go
+++ b/commands/bridge_token.go
@@ -49,7 +49,7 @@ func runTokenBridge(cmd *cobra.Command, args []string) error {
}
func printToken(token *core.Token) {
- idFmt := text.LeftPadMaxLine(token.HumanId(), 6, 0)
+ idFmt := text.LeftPadMaxLine(token.HumanId(), 7, 0)
valueFmt := text.LeftPadMaxLine(token.Value, 8, 0)
targetFmt := text.LeftPadMaxLine(token.Target, 8, 0)
scopesFmt := text.LeftPadMaxLine(strings.Join(token.Scopes, ","), 20, 0)