1 import { Component, OnInit, Input } from '@angular/core';
4 selector: 'app-sql-validate-error-dialog-component',
5 templateUrl: './sql-validate-error-dialog.component.html',
6 styleUrls: ['./sql-validate-error-dialog.component.css']
8 export class SQLValidateErrorDialogComponent 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);