This commit is contained in:
John Balasis 2022-04-11 14:21:43 +00:00
parent fe6d196a91
commit 378abf98c0
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
/*
* updated by myrto on 19/12/2018
*/
import { Component, OnInit } from '@angular/core';
import { RegisterExistingDatasourceComponent } from './register-existing-datasource.component';
@Component ({
selector: 'app-sr-literature',
templateUrl: './register-existing-datasource.component.html'
})
export class SrCrisComponent extends RegisterExistingDatasourceComponent implements OnInit {
ngOnInit() {
this.datasourceType = 'cris';
this.currentMode = 'opendoar';
super.ngOnInit();
}
}