Commit 1b1f9d2a by Shwetha GS

ATLAS-971 UI not displaying results for this query - Eg: "hive_table as t where…

ATLAS-971 UI not displaying results for this query - Eg: "hive_table as t where qualifiedName = 'default.input@cl1' select t" (kevalbhatt18 via shwethags)
parent b28ab21e
...@@ -276,16 +276,24 @@ ul { ...@@ -276,16 +276,24 @@ ul {
} }
span { span {
&.inputTag[data-id="tagClick"] { &.inputTag[data-id="tagClick"] {
span {
display: block;
padding: 3px 5px 3px 5px;
}
i.fa-close[data-id="deleteTag"] { i.fa-close[data-id="deleteTag"] {
display: none; display: none;
} }
} }
} }
a { a {
&.inputTag[data-id="addTag"] { &.inputTagAdd[data-id="addTag"] {
display: none; display: none;
} }
&.inputTag[data-id="tagClick"] { &.inputTag[data-id="tagClick"] {
span {
display: block;
padding: 3px 5px 3px 5px;
}
i.fa-times[data-id="delete"] { i.fa-times[data-id="delete"] {
display: none; display: none;
} }
......
...@@ -173,10 +173,16 @@ ...@@ -173,10 +173,16 @@
border: 1px $color_jungle_green_approx solid; border: 1px $color_jungle_green_approx solid;
background-color: $white; background-color: $white;
color: $color_jungle_green_approx; color: $color_jungle_green_approx;
padding-left: 5px;
&:hover { &:hover {
color: $white; color: $white;
background-color: $color_jungle_green_approx; background-color: $color_jungle_green_approx;
} }
i.fa {
&:hover {
background-color: $color_jungle_green_approx;
}
}
} }
.addTagBase { .addTagBase {
......
...@@ -234,18 +234,20 @@ define(['require', 'utils/Globals'], function(require, Globals) { ...@@ -234,18 +234,20 @@ define(['require', 'utils/Globals'], function(require, Globals) {
} }
} }
Utils.checkTagOrTerm = function(value) { Utils.checkTagOrTerm = function(value) {
var name = value.split('.'); if (value && _.isString(value)) {
if (name.length > 1) { var name = value.split('.');
return { if (name.length > 1) {
term: true, return {
name: name[name.length - 1], term: true,
fullName: value name: name[name.length - 1],
} fullName: value
} else { }
return { } else {
term: false, return {
name: name[name.length - 1], term: false,
fullName: value name: name[name.length - 1],
fullName: value
}
} }
} }
} }
......
...@@ -49,7 +49,7 @@ define(['require', ...@@ -49,7 +49,7 @@ define(['require',
initialize: function(options) { initialize: function(options) {
_.extend(this, _.pick(options, 'globalVent', 'collection')); _.extend(this, _.pick(options, 'globalVent', 'collection'));
this.collectionObject = this.collection.toJSON(); this.collectionObject = this.collection.toJSON();
this.model = new this.collection.model(); this.entityModel = new this.collection.model();
}, },
bindEvents: function() {}, bindEvents: function() {},
onRender: function() { onRender: function() {
......
...@@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES: ...@@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES:
ALL CHANGES: ALL CHANGES:
ATLAS-971 UI not displaying results for this query - Eg: "hive_table as t where qualifiedName = 'default.input@cl1' select t" (kevalbhatt18 via shwethags)
ATLAS-1010 Atlas allows recreation of tags with same name (shwethags) ATLAS-1010 Atlas allows recreation of tags with same name (shwethags)
ATLAS-990 Hive Import metadata script fails with auth exception (nixonrodrigues via shwethags) ATLAS-990 Hive Import metadata script fails with auth exception (nixonrodrigues via shwethags)
ATLAS-998 determine HA mode from property atlas.server.ids, instead of atlas.server.ha.enabled (madhan.neethiraj via shwethags) ATLAS-998 determine HA mode from property atlas.server.ids, instead of atlas.server.ha.enabled (madhan.neethiraj via shwethags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment