From bb6d034fee4f63430ff501e4067be0a69d4673ea Mon Sep 17 00:00:00 2001 From: Alan Cleary Date: Fri, 8 Jun 2018 15:51:54 -0600 Subject: [PATCH] All sources are now used by default in the query params, rather than the default server, which until the previous commit was hard-coded to "lis" --- client/src/app/models/query-params.model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/models/query-params.model.ts b/client/src/app/models/query-params.model.ts index a8f4cec6..22be39b6 100644 --- a/client/src/app/models/query-params.model.ts +++ b/client/src/app/models/query-params.model.ts @@ -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, ) { }