Skip to content
This repository has been archived by the owner on Jun 14, 2022. It is now read-only.

Commit

Permalink
fix issue with element search
Browse files Browse the repository at this point in the history
Co-authored-by: Cody Robibero <cody@robibe.ro>
  • Loading branch information
dkanada and crobibero authored Jul 4, 2020
1 parent 88de4f2 commit ef32269
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
var page = this;

ApiClient.getUsers().then(function (users) {
document.getElementById('#selectUser').innerHTML = users.map(function (user) {
document.getElementById('selectUser').innerHTML = users.map(function (user) {
return '<option value="' + user.Id + '">' + user.Name + '</option>';
});
});
Expand Down

0 comments on commit ef32269

Please sign in to comment.