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
125cdf5a
Commit
125cdf5a
authored
Dec 19, 2015
by
Suma Shivaprasad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-395 UI : In details page maps not displayed for different data…
ATLAS-395 UI : In details page maps not displayed for different data models(darshankuma89 via sumasai)
parent
2cae42c0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
details.html
dashboard/public/modules/details/views/details.html
+21
-1
release-log.txt
release-log.txt
+2
-1
No files found.
dashboard/public/modules/details/views/details.html
View file @
125cdf5a
...
...
@@ -50,7 +50,27 @@
</td>
<td
data-ng-if=
"isObject(value) && isObject(value.id) && isString(value.id.id)"
class=
"pointer"
>
<a
data-ui-sref=
"details({id:value.id.id})"
>
{{ value.id.id }}
</a>
</td>
<td
data-ng-if=
"isArray(value)"
>
<td
data-ng-if=
"isObject(value) && !isArray(value) && !isString(value.id) && !isObject(value.id)"
>
<span
data-ng-repeat=
"(key2, value2) in value"
>
{{ key2 }} : {{ value2 }}
<span
ng-if=
"!$last"
>
,
</span></span>
</td>
<td
data-ng-if=
"isArray(value) && !isString(value.id) && !isObject(value.id)"
>
<div
data-ng-repeat=
"(key2, value2) in value"
>
<a
class=
" pointer"
data-ng-if=
"isObject(value2) && isString(value2.id)"
data-ui-sref=
"details({id:value2.id})"
>
{{ value2.id }}
</a>
<div
class=
"row pdLft15px"
data-ng-repeat=
"(key1, value1) in value2"
>
<span
ng-if=
"isObject(value1)"
>
<a
class=
" pointer"
data-ng-if=
"isString(value1.id)"
data-ui-sref=
"details({id:value1.id})"
>
{{ value1.id }}
</a>
</span>
</div>
</div>
</td>
<td
data-ng-if=
"isArray(value) && !isObject(value)"
>
<div
class=
"row"
data-ng-repeat=
"(key1, value1) in value"
ng-if=
"value1"
>
<div
data-ng-if=
"isObject(value1)"
data-ng-repeat=
"(key2, value2) in value1"
>
<a
data-ng-if=
"isString(value2) && key2 == 'id'"
class=
"pointer pdLft15px"
data-ui-sref=
"details({id:value2})"
>
{{ value2 }}
</a>
...
...
release-log.txt
View file @
125cdf5a
...
...
@@ -12,8 +12,10 @@ INCOMPATIBLE CHANGES:
ATLAS-58 Make hive hook reliable (shwethags)
ATLAS-54 Rename configs in hive hook (shwethags)
ATLAS-3 Mixed Index creation fails with Date types (sumasai via shwethags)
ATLAS-47 Entity mutations for complex types (sumasai via shwethags)
ALL CHANGES:
ATLAS-395 UI : In details page maps not displayed for different data models (darshankumar89 via sumasai)
ATLAS-394 Fix BaseResourceIT.waitForNotification (shwethags via sumasai)
ATLAS-385 Support for Lineage for entities with SuperType as DataSet (anilsg via sumasai)
ATLAS-342 Atlas is sending an ENTITY_CREATE event to the ATLAS_ENTITIES topic even if the entity exists already (shwethags)
...
...
@@ -25,7 +27,6 @@ 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)
ATLAS-47 Entity mutations for complex types (sumasai via shwethags)
ATLAS-345 UI: Should allow tag addition on any search result that returns a reference-able entity (darshankumar89 via shwethags)
ATLAS-279 UI not displaying results for certain successful "select" search queries (anilsg via shwethags)
ATLAS-242 The qualified name for hive entities should be backward compatible (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