Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
001f074b
Commit
001f074b
authored
Dec 11, 2015
by
Suma Shivaprasad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-244 UI: Add Tag Tab (darshankumar89 via sumasai)
parent
532d6cec
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
2 deletions
+11
-2
common.css
dashboard/public/css/common.css
+4
-0
instanceTagsController.js
...rd/public/modules/tags/instance/instanceTagsController.js
+1
-1
tags.html
dashboard/public/modules/tags/instance/views/tags.html
+5
-1
release-log.txt
release-log.txt
+1
-0
No files found.
dashboard/public/css/common.css
View file @
001f074b
...
...
@@ -366,3 +366,6 @@ Tags on Home Page design
.h160
{
height
:
160px
!important
;
}
.tag-attr
{
font-weight
:
bold
;
}
\ No newline at end of file
dashboard/public/modules/tags/instance/instanceTagsController.js
View file @
001f074b
...
...
@@ -34,7 +34,7 @@ angular.module('dgc.tags.instance').controller('InstanceTagController', ['$scope
var
pair
=
key
+
":"
+
value
;
pair_arr
.
push
(
pair
);
});
data
.
traits
[
trait
].
values
=
pair_arr
.
join
(
"
|
"
);
data
.
traits
[
trait
].
values
=
pair_arr
.
join
(
"
,
"
);
}
else
{
data
.
traits
[
trait
].
values
=
'NA'
;
}
...
...
dashboard/public/modules/tags/instance/views/tags.html
View file @
001f074b
...
...
@@ -25,14 +25,18 @@
<thead>
<tr>
<th>
Tag
</th>
<th>
Attributes
</th>
<th>
Tools
</th>
</tr>
</thead>
<tbody>
<tr
ng-repeat=
"trait in traitsList"
class=
"pointer"
ng-if=
"!noTags"
>
<td
class=
"col-lg-
11
"
>
<td
class=
"col-lg-
5
"
>
{{trait.typeName}}
</td>
<td
class=
"col-lg-5 tag-attr"
>
{{trait.values}}
</td>
<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>
</td>
...
...
release-log.txt
View file @
001f074b
...
...
@@ -14,6 +14,7 @@ ATLAS-54 Rename configs in hive hook (shwethags)
ATLAS-3 Mixed Index creation fails with Date types (sumasai via shwethags)
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-380 Fix ATLAS source artifact generation (sumasai)
ATLAS-354 Kerberized cluster: quick_start.py fails to add sample data (shwethags)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment