Commit 001f074b by Suma Shivaprasad

ATLAS-244 UI: Add Tag Tab (darshankumar89 via sumasai)

parent 532d6cec
...@@ -365,4 +365,7 @@ Tags on Home Page design ...@@ -365,4 +365,7 @@ Tags on Home Page design
.h160 { .h160 {
height: 160px !important; height: 160px !important;
}
.tag-attr{
font-weight:bold;
} }
\ No newline at end of file
...@@ -34,7 +34,7 @@ angular.module('dgc.tags.instance').controller('InstanceTagController', ['$scope ...@@ -34,7 +34,7 @@ angular.module('dgc.tags.instance').controller('InstanceTagController', ['$scope
var pair = key + ":" + value; var pair = key + ":" + value;
pair_arr.push(pair); pair_arr.push(pair);
}); });
data.traits[trait].values = pair_arr.join(" | "); data.traits[trait].values = pair_arr.join(" , ");
} else { } else {
data.traits[trait].values = 'NA'; data.traits[trait].values = 'NA';
} }
......
...@@ -25,14 +25,18 @@ ...@@ -25,14 +25,18 @@
<thead> <thead>
<tr> <tr>
<th>Tag</th> <th>Tag</th>
<th>Attributes</th>
<th>Tools</th> <th>Tools</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr ng-repeat="trait in traitsList" class="pointer" ng-if="!noTags"> <tr ng-repeat="trait in traitsList" class="pointer" ng-if="!noTags">
<td class="col-lg-11" > <td class="col-lg-5" >
{{trait.typeName}} {{trait.typeName}}
</td> </td>
<td class="col-lg-5 tag-attr" >
{{trait.values}}
</td>
<td class="col-lg-1 tagAlign"> <td class="col-lg-1 tagAlign">
<a href="" class="deleteTag confirm-delete" data-toggle="modal" data-target="#myModal" ><i class="fa fa-trash-o " ng-click="detachTag($event, trait.typeName)"></i></a> <a href="" class="deleteTag confirm-delete" data-toggle="modal" data-target="#myModal" ><i class="fa fa-trash-o " ng-click="detachTag($event, trait.typeName)"></i></a>
</td> </td>
......
...@@ -14,6 +14,7 @@ ATLAS-54 Rename configs in hive hook (shwethags) ...@@ -14,6 +14,7 @@ ATLAS-54 Rename configs in hive hook (shwethags)
ATLAS-3 Mixed Index creation fails with Date types (sumasai via shwethags) ATLAS-3 Mixed Index creation fails with Date types (sumasai via shwethags)
ALL CHANGES: ALL CHANGES:
ATLAS-244 UI: Add Tag Tab (darshankumar89 via sumasai)
ATLAS-376 UI: Use the Schema API of the backend to populate details for Schema tab (darshankumar89 via sumasai) ATLAS-376 UI: Use the Schema API of the backend to populate details for Schema tab (darshankumar89 via sumasai)
ATLAS-380 Fix ATLAS source artifact generation (sumasai) ATLAS-380 Fix ATLAS source artifact generation (sumasai)
ATLAS-354 Kerberized cluster: quick_start.py fails to add sample data (shwethags) ATLAS-354 Kerberized cluster: quick_start.py fails to add sample data (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