From 3032a1fade43737c51c49b5ccda34f336394c2ed Mon Sep 17 00:00:00 2001 From: Ariel Leyva Date: Sat, 24 Jan 2026 08:39:25 -0500 Subject: [PATCH] fix: adjust columns of the table from the "users ls" command (#5716) --- cmd/users.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/users.go b/cmd/users.go index 66487862..7d35e964 100644 --- a/cmd/users.go +++ b/cmd/users.go @@ -27,7 +27,7 @@ var usersCmd = &cobra.Command{ func printUsers(usrs []*users.User) { w := tabwriter.NewWriter(os.Stdout, 0, 0, 2, ' ', 0) - fmt.Fprintln(w, "ID\tUsername\tScope\tLocale\tV. Mode\tS.Click\tAdmin\tExecute\tCreate\tRename\tModify\tDelete\tShare\tDownload\tPwd Lock") + fmt.Fprintln(w, "ID\tUsername\tScope\tLocale\tV. Mode\tS.Click\tRed. After C/M\tAdmin\tExecute\tCreate\tRename\tModify\tDelete\tShare\tDownload\tPwd Lock") for _, u := range usrs { fmt.Fprintf(w, "%d\t%s\t%s\t%s\t%s\t%t\t%t\t%t\t%t\t%t\t%t\t%t\t%t\t%t\t%t\t%t\t\n",