Skip to content

Commit

Permalink
Fix source controller service database ui rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
scottreisdorf committed Nov 29, 2018
1 parent 7ec8c18 commit 2be7f04
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ export class TablePropertiesComponent implements OnChanges, OnInit {
}
}

console.log("get ",this.tableSchemaService.LIST_TABLES_URL(this.dbConnectionProperty.value), 'with ',httpOptions.params)

return this.http.get(this.tableSchemaService.LIST_TABLES_URL(this.dbConnectionProperty.value), httpOptions).pipe(
catchError((error: any) => {
return Observable.throw(error);
Expand Down Expand Up @@ -502,8 +502,6 @@ export class TablePropertiesComponent implements OnChanges, OnInit {
else {
this.databaseConnectionErrorMessage = "Unable to connecto to data source.";
}

this.databaseConnectionErrorMessage +=". If you know the table name and source field names you can manually enter them below."
throw error;
})
);
Expand Down

0 comments on commit 2be7f04

Please sign in to comment.