This is an automated email from the ASF dual-hosted git repository.

vogievetsky pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 4c61378ad1 fix broken link in web-console (#12976)
4c61378ad1 is described below

commit 4c61378ad1da25960b8283e58f890c9b1a47ddfa
Author: Lee Surprenant <[email protected]>
AuthorDate: Thu Aug 25 19:47:41 2022 -0400

    fix broken link in web-console (#12976)
    
    In 0.23.0, the info-button links to 
https://druid.apache.org/docs/0.23.0/ingestion/flatten-json.html which is a 404
    
    If I got the spot right, this should now link to 
https://druid.apache.org/docs/[VERSION]/ingestion/data-formats.html#flattenspec
---
 web-console/src/views/load-data-view/load-data-view.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web-console/src/views/load-data-view/load-data-view.tsx 
b/web-console/src/views/load-data-view/load-data-view.tsx
index bf74ba10d4..7afc13aa75 100644
--- a/web-console/src/views/load-data-view/load-data-view.tsx
+++ b/web-console/src/views/load-data-view/load-data-view.tsx
@@ -1614,7 +1614,7 @@ export class LoadDataView extends 
React.PureComponent<LoadDataViewProps, LoadDat
           />
           <AnchorButton
             icon={IconNames.INFO_SIGN}
-            href={`${getLink('DOCS')}/ingestion/flatten-json.html`}
+            href={`${getLink('DOCS')}/ingestion/data-formats.html#flattenspec`}
             target="_blank"
             minimal
           />


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to