Skip to content

Commit

Permalink
Fix getTableDescription API
Browse files Browse the repository at this point in the history
  • Loading branch information
ttannis committed Oct 30, 2019
1 parent 74c652f commit 20544b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function getTableData(tableKey: string, index?: string, source?: string )

export function getTableDescription(tableData: TableMetadata) {
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>) => {
tableData.table_description = response.data.description;
return tableData;
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def build_js() -> None:
with open(requirements_path) as requirements_file:
requirements = requirements_file.readlines()

__version__ = '1.1.0'
__version__ = '1.1.1'


setup(
Expand Down

0 comments on commit 20544b6

Please sign in to comment.