Skip to content

Commit

Permalink
fix path error
Browse files Browse the repository at this point in the history
  • Loading branch information
now-water committed Jun 22, 2021
1 parent 6c12c13 commit dce0b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/EditOnRepo/EditOnRepo.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const EditOnRepo = ({ repoType, branch, location, path }) => {
break;
case 'github':
icon = require('images/github.svg');
link = `${location}/tree/${branch}/${rootDir}/${path}`;
link = `${location}/tree/master/${rootDir}/${path}`;
text += 'Github';
break;
case 'bitbucket':
Expand Down

0 comments on commit dce0b4c

Please sign in to comment.