Skip to content

Commit

Permalink
Merge pull request #170 from OnroerendErfgoed/bugfix/169_remove_wildcard
Browse files Browse the repository at this point in the history
#169 Update actor.service.ts
  • Loading branch information
wouter-adriaens authored Nov 20, 2023
2 parents f1f74bb + 84c311c commit ef9454e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/actor.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class ActorService extends HttpService {
return (
await this.get<IActor[]>(`${this.API_URL}/actoren/wij`, {
headers: { Authorization: 'Bearer ' + ssoToken },
params: { omschrijving: `${searchTerm}*` },
params: { omschrijving: `${searchTerm}` },
})
).data;
}
Expand Down

0 comments on commit ef9454e

Please sign in to comment.