Skip to content

Commit

Permalink
All sources are now used by default in the query params, rather than …
Browse files Browse the repository at this point in the history
…the default server, which until the previous commit was hard-coded to "lis"
  • Loading branch information
alancleary committed Jun 8, 2018
1 parent c93449a commit bb6d034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/app/models/query-params.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class QueryParams {

constructor(
public neighbors: number = 10,
public sources: string[] = [AppConfig.getDefaultServer().id],
public sources: string[] = AppConfig.SERVERS.map((s) => s.id),
public matched: number = 4,
public intermediate: number = 5,
) { }
Expand Down

0 comments on commit bb6d034

Please sign in to comment.