Skip to content
This repository was archived by the owner on Sep 8, 2019. It is now read-only.

Commit 834d16e

Browse files
Remove yet another :8000
1 parent a22a7d9 commit 834d16e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/www/users/get_users.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ function get_users() {
3131
};
3232
console.log("first name: \""+fn + "\" lastname: \"" + ln+"\"");
3333
if (fn !=="" && ln !==""){
34-
xhttp.open("GET", baseip+":8000/users/?first_name_exact="+fn+"&last_name_exact="+ln, true);
34+
xhttp.open("GET", baseip+"/users/?first_name_exact="+fn+"&last_name_exact="+ln, true);
3535
}else if(fn !==""){
36-
xhttp.open("GET", baseip+":8000/users/?first_name_exact="+fn, true);
36+
xhttp.open("GET", baseip+"/users/?first_name_exact="+fn, true);
3737
}else if(ln !==""){
38-
xhttp.open("GET", baseip+":8000/users/?last_name_exact="+ln, true);
38+
xhttp.open("GET", baseip+"/users/?last_name_exact="+ln, true);
3939
}else {
4040
console.log("Empty Search");
4141
xhttp.open("GET", baseip+"/users/", true);

0 commit comments

Comments
 (0)