Skip to content

Commit

Permalink
fix edit link for process docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-rp committed Mar 19, 2024
1 parent 17b0539 commit e7a9476
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ const config = {
'**/__tests__/**',
],
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/dlt-hub/dlt/tree/devel/docs/website',
editUrl: (params) => {
return "https://github.com/dlt-hub/dlt/tree/devel/docs/website/docs/" + params.docPath;
},
versions: {
current: {
label: 'current',
Expand Down

0 comments on commit e7a9476

Please sign in to comment.