1 import { Component, OnInit, Input } from '@angular/core';
4 selector: 'app-validate-error-component',
5 templateUrl: './validate-error-component.component.html',
6 styleUrls: ['./validate-error-component.component.css']
8 export class ValidateErrorComponentComponent implements OnInit {
10 @Input() tableObj : any;
16 this.errorObj = new Object();
17 this.errorObj = JSON.parse(this.tableObj);
22 this.errorObj = new Object();
23 this.errorObj = JSON.parse(this.tableObj);