2022-03-11 10:53:32 -08:00
|
|
|
import { Component, Input, OnInit } from '@angular/core'
|
2020-12-13 14:56:44 +01:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-metadata-collapse',
|
|
|
|
|
templateUrl: './metadata-collapse.component.html',
|
2022-03-11 10:53:32 -08:00
|
|
|
styleUrls: ['./metadata-collapse.component.scss'],
|
2020-12-13 14:56:44 +01:00
|
|
|
})
|
|
|
|
|
export class MetadataCollapseComponent implements OnInit {
|
2022-03-11 10:53:32 -08:00
|
|
|
constructor() {}
|
2020-12-13 14:56:44 +01:00
|
|
|
|
|
|
|
|
expand = false
|
|
|
|
|
|
|
|
|
|
@Input()
|
|
|
|
|
metadata
|
|
|
|
|
|
|
|
|
|
@Input()
|
2020-12-28 15:39:53 +01:00
|
|
|
title = $localize`Metadata`
|
2020-12-13 14:56:44 +01:00
|
|
|
|
2022-03-11 10:53:32 -08:00
|
|
|
ngOnInit(): void {}
|
2020-12-13 14:56:44 +01:00
|
|
|
}
|