Project

General

Profile

1
import { Component, Input} from '@angular/core';
2
@Component({
3
    selector: 'manage',
4
    template: `
5

    
6
        <a [href]="'https://beta.admin.connect.openaire.eu/dashboard?communityId='+communityId" class="uk-button uk-button-default uk-button-small portal-button" target="_blank">
7
            Manage
8
        </a>
9

    
10

    
11
    `
12
})
13

    
14
export class ManageComponent {
15
   @Input() communityId:string;
16

    
17
   constructor() {}
18
}
19

    
(1-1/2)