|
@@ -813,7 +813,11 @@ class DataCatalogEntry {
|
|
|
getResolvedComment() {
|
|
getResolvedComment() {
|
|
|
const self = this;
|
|
const self = this;
|
|
|
// TODO: Move to connector attributes
|
|
// TODO: Move to connector attributes
|
|
|
- if (self.navigatorMeta && (self.getDialect() === 'hive' || self.getDialect() === 'impala') && (self.navigatorMeta.description || self.navigatorMeta.originalDescription)) {
|
|
|
|
|
|
|
+ if (
|
|
|
|
|
+ self.navigatorMeta &&
|
|
|
|
|
+ (self.getDialect() === 'hive' || self.getDialect() === 'impala') &&
|
|
|
|
|
+ (self.navigatorMeta.description || self.navigatorMeta.originalDescription)
|
|
|
|
|
+ ) {
|
|
|
return self.navigatorMeta.description || self.navigatorMeta.originalDescription;
|
|
return self.navigatorMeta.description || self.navigatorMeta.originalDescription;
|
|
|
}
|
|
}
|
|
|
if (self.definition && self.definition.comment) {
|
|
if (self.definition && self.definition.comment) {
|