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
63c86bff
Commit
63c86bff
authored
9 years ago
by
Vishal Kadam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HDPDGI-69:Vishal: Removed unnecessary transform of json
parent
1efb57bc
master
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lineageController.js
dashboard/v2/public/modules/lineage/lineageController.js
+2
-2
No files found.
dashboard/v2/public/modules/lineage/lineageController.js
View file @
63c86bff
...
...
@@ -30,7 +30,7 @@ angular.module('dgc.lineage').controller('LineageController', ['$element', '$sco
if
(
!
_
.
isEmpty
(
response
.
results
.
values
.
vertices
))
{
var
allGuids
=
loadProcess
(
response
.
results
.
values
.
edges
,
response
.
results
.
values
.
vertices
);
allGuids
.
then
(
function
(
res
)
{
guidsList
=
JSON
.
parse
(
res
)
;
guidsList
=
res
;
$scope
.
lineageData
=
transformData
(
response
.
results
);
if
(
callRender
)
{
render
();
...
...
@@ -55,7 +55,7 @@ angular.module('dgc.lineage').controller('LineageController', ['$element', '$sco
}
$q
.
all
(
urlCalls
)
.
then
(
function
(
results
)
{
deferred
.
resolve
(
JSON
.
stringify
(
results
)
);
deferred
.
resolve
(
results
);
});
return
deferred
.
promise
;
}
...
...
This diff is collapsed.
Click to expand it.
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