plugins-functionality #43

Merged
argiro.kokogiannaki merged 86 commits from plugins-functionality into develop 2024-06-13 09:14:22 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit b7cf0fbaac - Show all commits

View File

@ -110,7 +110,7 @@
{{contentProviderTotal|number}} {{contentProviderTotal|number}}
</a> </a>
<span class="uk-flex uk-flex-middle uk-text-small"> <span class="uk-flex uk-flex-middle uk-text-small">
Content Providers {{openaireEntities.DATASOURCES}}
<a *ngIf="contentProvidersCalculated && (contentProviderTotal && contentProviderTotal > 0 && isEntityEnabled('datasource') && isRouteEnabled(searchLinkToDataProviders))" <a *ngIf="contentProvidersCalculated && (contentProviderTotal && contentProviderTotal > 0 && isEntityEnabled('datasource') && isRouteEnabled(searchLinkToDataProviders))"
[title]="buildContentProvidersTooltip()" [title]="buildContentProvidersTooltip()"
[attr.uk-tooltip]="'pos: bottom-right; delay: 10;'" [attr.uk-tooltip]="'pos: bottom-right; delay: 10;'"

View File

@ -211,7 +211,7 @@ export class PluginGatewayInformationComponent extends PluginBaseComponent<Plugi
let tooltipContent: string = "<div>"; let tooltipContent: string = "<div>";
if (this.contentProviderTotal != null && this.contentProviderTotal > 0 && this.isEntityEnabled('datasource') && this.isRouteEnabled(this.searchLinkToDataProviders)) { if (this.contentProviderTotal != null && this.contentProviderTotal > 0 && this.isEntityEnabled('datasource') && this.isRouteEnabled(this.searchLinkToDataProviders)) {
tooltipContent += "<span class='uk-text-bold'>Content Providers</span>"; tooltipContent += "<span class='uk-text-bold'>Data sources</span>";
} }
tooltipContent += " have been selected as relevant for your community by the gateway curators."; tooltipContent += " have been selected as relevant for your community by the gateway curators.";