|
|
@@ -1,4 +1,4 @@
|
|
|
-import { Component, Input, OnInit } from '@angular/core';
|
|
|
+import {Component, Input, OnInit} from '@angular/core';
|
|
|
|
|
|
@Component({
|
|
|
selector: 'pra-dataset-list',
|
|
|
@@ -9,7 +9,11 @@ import { Component, Input, OnInit } from '@angular/core';
|
|
|
export class DatasetListComponent implements OnInit {
|
|
|
@Input() factor;
|
|
|
datasetlistVisible = false;
|
|
|
- constructor() { }
|
|
|
+ constructor() {}
|
|
|
|
|
|
- ngOnInit() { }
|
|
|
+ ngOnInit() {}
|
|
|
+
|
|
|
+ showMetadataWindow() {
|
|
|
+ //TODO: create window, show data from ontology
|
|
|
+ }
|
|
|
}
|