Skip to content

Commit

Permalink
#2474 Remove log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalizer committed Nov 22, 2023
1 parent dd1af4e commit ea516c2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion dashboard/src/components/access/RevokeUserAccess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ limitations under the License.
const userDisplay = props.userIdForDisplay ? props.userIdForDisplay : props.userId;
const { oAuthProviders } = this.$store.getters.config;
let userName = '';
console.log(props);
if (props.firstName && props.lastName) {
userName = `(${props.lastName}, ${props.firstName})`;
}
Expand Down
1 change: 0 additions & 1 deletion dashboard/src/components/users/UserIdForDisplayMixin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ limitations under the License.
name: 'UserIdForDisplayMixin',
methods: {
getUserDisplay(props) {
console.log(props);
const userDisplay = props.userIdForDisplay ? props.userIdForDisplay : props.userId;
const { oAuthProviders } = this.$store.getters.config;
let userName = '';
Expand Down

0 comments on commit ea516c2

Please sign in to comment.