[Library | Trunk]: Fix manage on research results

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@60228 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2021-01-13 16:10:05 +00:00
parent 584fd7bcaf
commit 8e76890a1c
2 changed files with 3 additions and 2 deletions

View File

@ -86,7 +86,7 @@
class="portal-link">
{{(result.name) ? result.name : result.index_shortName}}
</a>
<manage *ngIf="result.isManager" [alias]="result.alias" [properties]="properties"
<manage *ngIf="result.isManager" [alias]="result.alias"
class="uk-width-expand uk-margin-auto-right"></manage>
</div>
<div class="uk-margin-small-top uk-text-small">

View File

@ -1,5 +1,6 @@
import { Component, Input} from '@angular/core';
import {EnvProperties} from "../properties/env-properties";
import {properties} from "../../../../environments/environment";
@Component({
selector: 'manage',
template: `
@ -20,6 +21,6 @@ export class ManageComponent {
@Input() communityId:string;
@Input() alias: string;
@Input() buttonSizeSmall = true;
@Input() properties: EnvProperties;
properties: EnvProperties = properties;
constructor() {}
}