diff --git a/explore/src/app/app.component.ts b/explore/src/app/app.component.ts index 14f85d77..726f0e32 100644 --- a/explore/src/app/app.component.ts +++ b/explore/src/app/app.component.ts @@ -96,7 +96,7 @@ export class AppComponent { { rootItem: new MenuItem("search", "Search", "", "/search/find", false, [], ["/search/find"], {}), items: [ - new MenuItem("", "Research Outcomes", "", "/search/find/research-outcomes", false, [], ["/search/find/research-outcomes"], {}), + new MenuItem("", "Research Outcomes", "", "/search/find/research-outcomes", false, [], ["/search/find/research-outcomes"], {qf:true}), new MenuItem("", "Projects", "", "/search/find/projects/", false, ["project"], ["/search/find/projects"], {}), new MenuItem("", "Content Providers", "", "/search/find/dataproviders", false, ["datasource"], ["/search/find/dataproviders"], {}), new MenuItem("", "Organizations", "", "/search/find/organizations/", false, ["organization"], ["/search/find/organizations"], {}) diff --git a/explore/src/app/home/home.component.html b/explore/src/app/home/home.component.html index 3ce65f36..a24da417 100644 --- a/explore/src/app/home/home.component.html +++ b/explore/src/app/home/home.component.html @@ -29,7 +29,7 @@ (selectionChange)="entityChanged($event)" > -
+
@@ -38,9 +38,11 @@ [(ngModel)]="keyword" name="keyword">
-
+
+ [quickFilter]="resultsQuickFilter" + [QFselected]="(resultsQuickFilter)?resultsQuickFilter.selected:null" + [properties]="properties" [delayTime]="0">
diff --git a/explore/src/app/home/home.component.ts b/explore/src/app/home/home.component.ts index c8014cf0..2a143c06 100644 --- a/explore/src/app/home/home.component.ts +++ b/explore/src/app/home/home.component.ts @@ -415,7 +415,7 @@ public subPub;public subData;public subProjects;public subOrg; public subDataPr; if (this.resultTypes.other) { values.push("other"); } - if (values.length > 0) { + if (values.length > 0 && values.length !=4) { parameterNames.push("type"); parameterValues.push(values.join(",")); } diff --git a/explore/src/index.html b/explore/src/index.html index 8ae718d9..dad078cd 100644 --- a/explore/src/index.html +++ b/explore/src/index.html @@ -61,7 +61,6 @@ $(document).ready(function(){ -