We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8e3a04 commit e59239eCopy full SHA for e59239e
1 file changed
packages/b2c-cli/src/commands/bm/roles/list.ts
@@ -16,6 +16,7 @@ const COLUMNS: Record<string, ColumnDef<BmRole>> = {
16
description: {
17
header: 'Description',
18
get: (r) => r.description || '-',
19
+ extended: true,
20
},
21
userCount: {
22
header: 'Users',
@@ -28,7 +29,7 @@ const COLUMNS: Record<string, ColumnDef<BmRole>> = {
28
29
30
};
31
-const DEFAULT_COLUMNS = ['id', 'description', 'userCount'];
32
+const DEFAULT_COLUMNS = ['id', 'userCount'];
33
34
export default class BmRolesList extends InstanceCommand<typeof BmRolesList> {
35
static description = t('commands.bm.roles.list.description', 'List Business Manager access roles on an instance');
0 commit comments