From 4dc7b8b06ed5d48eca077b81a0b8c90777b8fe82 Mon Sep 17 00:00:00 2001 From: amine Date: Thu, 24 Oct 2019 20:39:13 +0200 Subject: tokens: use entity.Id as id type --- commands/bridge_token.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands') 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) -- cgit