mirror of
https://github.com/clearml/clearml-web
synced 2025-05-09 14:21:13 +00:00
17 lines
650 B
TypeScript
17 lines
650 B
TypeScript
import {Component, EventEmitter, Input, Output} from '@angular/core';
|
|
import {ProjectCardComponent} from '@common/shared/ui-components/panel/project-card/project-card.component';
|
|
import {trackById} from '@common/shared/utils/forms-track-by';
|
|
|
|
@Component({
|
|
selector: 'sm-pipeline-card',
|
|
templateUrl: './pipeline-card.component.html',
|
|
styleUrls: ['./pipeline-card.component.scss']
|
|
})
|
|
export class PipelineCardComponent extends ProjectCardComponent {
|
|
@Input() allTags: string[];
|
|
@Output() run = new EventEmitter();
|
|
@Output() addTag = new EventEmitter<string>();
|
|
@Output() removeTag = new EventEmitter<string>();
|
|
trackById = trackById;
|
|
}
|