@@ -98,6 +98,7 @@ export class EntityActionsComponent implements OnInit {
@Input() showTooltip: boolean = true;
@Input() compactView: boolean = false; // if true, do not show label for actions
public citeThisClicked: boolean;
+ public addThisClicked: boolean;
public routerHelper: RouterHelper = new RouterHelper();
@ViewChild('citeModal') citeModal;
@ViewChild('embedResultsModal') embedResultsModal;
@@ -140,6 +141,7 @@ export class EntityActionsComponent implements OnInit {
}
public openAddThisModal() {
+ this.addThisClicked = true;
this.addThisModal.cancelButton = false;
this.addThisModal.okButton = false;
this.addThisModal.alertTitle = "Share this " + this.getTypeName() + " in your social networks";
diff --git a/utils/properties/env-properties.ts b/utils/properties/env-properties.ts
index 1932596d..f518f97f 100644
--- a/utils/properties/env-properties.ts
+++ b/utils/properties/env-properties.ts
@@ -8,6 +8,7 @@ export interface EnvProperties {
adminToolsPortalType?: PortalType;
dashboard?: Dashboard;
isDashboard?: boolean;
+ plan?:string;
domain?: string;
enablePiwikTrack?: boolean;
useCache?: boolean;
diff --git a/utils/properties/searchFields.base.ts b/utils/properties/searchFields.base.ts
index 4d25b6ec..effe8ade 100644
--- a/utils/properties/searchFields.base.ts
+++ b/utils/properties/searchFields.base.ts
@@ -349,7 +349,15 @@ export class SearchFieldsBase {
operator: "hl",
equalityOperator: " = ",
filterType: "triplet"
- }
+ },
+ ["relorganization"]: {
+ name: OpenaireEntities.ORGANIZATION,
+ type: "refine",
+ param: "organization",
+ operator: "or",
+ equalityOperator: " exact ",
+ filterType: "checkbox"
+ },
};
public RESULT_STATIC_FIELD_VALUES: { [key: string]: {"name": string, "id": string, "count": string}[] } = {