Skip to content

Commit

Permalink
CR-14966 CLI no longer shows user IDs (#756)
Browse files Browse the repository at this point in the history
* CR-14966 CLI no longer shows user IDs

* CR-14966 CLI no longer shows user IDs
  • Loading branch information
vadim-kharin-codefresh authored Oct 20, 2022
1 parent a5008e4 commit f4710db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/logic/entities/Team.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Team extends Entity {
type: response.type,
account: response.account,
tags: response.tags,
users: response.users.map(({ id, userName }) => ({ id, userName })),
users: response.users.map(({ _id, userName }) => ({ id: _id, userName })),
});
}
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codefresh",
"version": "0.80.0",
"version": "0.80.1",
"description": "Codefresh command line utility",
"main": "index.js",
"preferGlobal": true,
Expand Down Expand Up @@ -113,4 +113,4 @@
"./test-setup.js"
]
}
}
}

0 comments on commit f4710db

Please sign in to comment.