pipeline-builder-demo
Version:
Pipeline Builder
24 lines (19 loc) • 475 B
text/typescript
import { Component, Input } from '@angular/core';
({
selector: 'pb-error-panel',
templateUrl: 'error-panel.component.html',
styleUrls: ['error-panel.component.scss']
})
export class ErrorPanelComponent {
() errors: string[];
private isShowError: boolean;
constructor() {
this.isShowError = false;
}
hideErrors(): void {
this.isShowError = false;
}
showErrors(): void {
this.isShowError = true;
}
}