Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
amundsen_dev
Project
Project
Details
Activity
Releases
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
Surendar Reddy Mangannagari
amundsen_dev
Commits
2fc6bba8
Unverified
Commit
2fc6bba8
authored
Oct 30, 2019
by
Daniel
Committed by
GitHub
Oct 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a duplicate `/v0` in the API for getTableDescription (#323)
parent
4e24bfe1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
v0.ts
amundsen_application/static/js/ducks/tableMetadata/api/v0.ts
+1
-1
No files found.
amundsen_application/static/js/ducks/tableMetadata/api/v0.ts
View file @
2fc6bba8
...
@@ -60,7 +60,7 @@ export function getTableData(tableKey: string, index?: string, source?: string )
...
@@ -60,7 +60,7 @@ export function getTableData(tableKey: string, index?: string, source?: string )
export
function
getTableDescription
(
tableData
:
TableMetadata
)
{
export
function
getTableDescription
(
tableData
:
TableMetadata
)
{
const
tableParams
=
getTableQueryParams
(
tableData
.
key
);
const
tableParams
=
getTableQueryParams
(
tableData
.
key
);
return
axios
.
get
(
`
${
API_PATH
}
/
v0/
get_table_description?
${
tableParams
}
`
)
return
axios
.
get
(
`
${
API_PATH
}
/get_table_description?
${
tableParams
}
`
)
.
then
((
response
:
AxiosResponse
<
DescriptionAPI
>
)
=>
{
.
then
((
response
:
AxiosResponse
<
DescriptionAPI
>
)
=>
{
tableData
.
table_description
=
response
.
data
.
description
;
tableData
.
table_description
=
response
.
data
.
description
;
return
tableData
;
return
tableData
;
...
...
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