15 lines
427 B
TypeScript
15 lines
427 B
TypeScript
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
|
|
import { Task } from 'app/workplace/models/task';
|
|
|
|
@Component({
|
|
selector: 'taskana-task-details-custom-fields',
|
|
templateUrl: './custom-fields.component.html'
|
|
})
|
|
export class TaskdetailsCustomFieldsComponent implements OnInit {
|
|
@Input() task: Task;
|
|
@Output() taskChange: EventEmitter<Task> = new EventEmitter<Task>();
|
|
|
|
ngOnInit() {
|
|
}
|
|
}
|