Skip to content

Commit 218949a

Browse files
committed
fix(user db service): fix search for getSchool
1 parent c4de6bb commit 218949a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/user/user-db/user-db.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class UserDBService {
8080
}
8181

8282
getSchool(udise: string): Promise<any> {
83-
const url = this.url + this.schoolPartUrl + `?udise=${udise}`;
83+
const url = this.url + this.schoolPartUrl + `?search=${udise}`;
8484
return got
8585
.get(url)
8686
.then((response: Response): any => {

0 commit comments

Comments
 (0)