Skip to content

Commit

Permalink
Fixed issue with bad migrated data. (#295)
Browse files Browse the repository at this point in the history
Co-authored-by: weskubo-cgi <[email protected]>
  • Loading branch information
weskubo-cgi and weskubo-cgi authored Jul 19, 2024
1 parent b378fd1 commit ebe74b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/account-mgmt/ManageUsersView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export default {
}
// If stateCode is the same, then sort by lastName
return a.lastName.localeCompare(b.lastName)
return a.lastName?.localeCompare(b.lastName)
})
},
Expand Down

0 comments on commit ebe74b6

Please sign in to comment.