Skip to content

Commit

Permalink
changed the comparision symbol to pass checks
Browse files Browse the repository at this point in the history
  • Loading branch information
aldo committed Nov 26, 2024
1 parent 175f35e commit e06d67e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FrontEndReact/src/View/Admin/Add/AddUsers/AdminAddUser.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class AdminAddUser extends Component {
"first_name": firstName,
"last_name": lastName,
"email": email,
"lms_id": lmsId != "" ? lmsId : null,
"lms_id": lmsId !== "" ? lmsId : null,
"consent": null,
"owner_id": cookies.get('user')['user_id'],
"role_id": navbar.props.isSuperAdmin ? 3 : role
Expand Down

0 comments on commit e06d67e

Please sign in to comment.