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
800df29a
Commit
800df29a
authored
9 years ago
by
Suma Shivaprasad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-282 Atlas UI: Entity Details UI is broken after the changes in ATLAS-58(ayubkhan via sumasai)
parent
e4543de6
master
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
detailsResource.js
dashboard/public/modules/details/detailsResource.js
+3
-3
No files found.
dashboard/public/modules/details/detailsResource.js
View file @
800df29a
...
...
@@ -19,7 +19,7 @@
'use strict'
;
angular
.
module
(
'dgc.details'
).
factory
(
'DetailsResource'
,
[
'$resource'
,
function
(
$resource
)
{
return
$resource
(
'/api/atlas/entit
y
/:id'
,
{},
{
return
$resource
(
'/api/atlas/entit
ies
/:id'
,
{},
{
get
:
{
method
:
'GET'
,
transformResponse
:
function
(
data
)
{
...
...
@@ -31,11 +31,11 @@ angular.module('dgc.details').factory('DetailsResource', ['$resource', function(
},
saveTag
:
{
method
:
'POST'
,
url
:
'/api/atlas/entit
y
/:id/traits'
url
:
'/api/atlas/entit
ies
/:id/traits'
},
detachTag
:
{
method
:
'DELETE'
,
url
:
'/api/atlas/entit
y
/:id/traits/:tagName'
url
:
'/api/atlas/entit
ies
/:id/traits/:tagName'
}
});
...
...
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