Commit 9e5ef85c by kevalbhatt Committed by Madhan Neethiraj

ATLAS-1469: updated UI to send null tag attribute value when no input is provided

Signed-off-by: 's avatarMadhan Neethiraj <madhan@apache.org> (cherry picked from commit 31320f727246e8acee705fc9d6d927e06d636e07)
parent 23c8f71d
...@@ -45,6 +45,18 @@ ...@@ -45,6 +45,18 @@
.label { .label {
fill: $color_suva_gray_approx; fill: $color_suva_gray_approx;
} }
image {
&.nodeImage {
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
&:hover {
-moz-transform: scale(1.4);
-webkit-transform: scale(1.4);
transform: scale(1.4);
}
}
}
} }
.overlay {} .overlay {}
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
<div class="atlast-tabbable"> <div class="atlast-tabbable">
<h4 class="lineageLabel">LINEAGE</h4> <h4 class="lineageLabel">LINEAGE</h4>
<div class="panel panel-default lineageLayout"> <div class="panel panel-default lineageLayout">
<div id="r_lineageLayoutView" style="height:385px"> <div id="r_lineageLayoutView" style="height:405px">
<div class="fontLoader"> <div class="fontLoader">
<i class="fa fa-refresh fa-spin-custom"></i> <i class="fa fa-refresh fa-spin-custom"></i>
</div> </div>
......
...@@ -22,6 +22,10 @@ ...@@ -22,6 +22,10 @@
<i class="fa fa-refresh fa-spin-custom"></i> <i class="fa fa-refresh fa-spin-custom"></i>
</div> </div>
<svg width=100% height=350></svg> <svg width=100% height=350></svg>
<div class="legends">
<i class="fa fa-long-arrow-right" aria-hidden="true" style="margin-right: 12px; color:#8bc152;">&nbsp<span>Lineage</span></i>
<i class="fa fa-long-arrow-right" aria-hidden="true" style="color:#fb4200;">&nbsp<span>Impact</span></i>
</div>
<div class="zoomButtonGroup"> <div class="zoomButtonGroup">
<button type="button" class="zoomButton" id="zoom_in">+</button> <button type="button" class="zoomButton" id="zoom_in">+</button>
<button type="button" class="zoomButton" id="zoom_out">-</button> <button type="button" class="zoomButton" id="zoom_out">-</button>
......
...@@ -66,7 +66,7 @@ define(['require', ...@@ -66,7 +66,7 @@ define(['require',
var tagAttributeNames = this.$(".attrName"); var tagAttributeNames = this.$(".attrName");
tagAttributeNames.each(function(i, item) { tagAttributeNames.each(function(i, item) {
var selection = $(item).data("key"); var selection = $(item).data("key");
tagAttributes[selection] = $(item).val(); tagAttributes[selection] = $(item).val() || null;
}); });
var obj = { var obj = {
tagName: tagName, tagName: tagName,
......
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