You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mediarepo/mediarepo-ui/src/app/components/shared/app-common/metadata-entry/metadata-entry.component.ts

17 lines
445 B
TypeScript

import {ChangeDetectionStrategy, Component, Input} from "@angular/core";
@Component({
selector: "app-metadata-entry",
templateUrl: "./metadata-entry.component.html",
styleUrls: ["./metadata-entry.component.scss"],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MetadataEntryComponent {
@Input() display: "multiline" | "line" = "multiline";
@Input() attributeName!: string;
constructor() {
}
}