Skip to content

Commit

Permalink
Merge pull request #8 from ksaswin/fix-download-btn
Browse files Browse the repository at this point in the history
Hide Download button from home page view
  • Loading branch information
ksaswin authored Oct 4, 2023
2 parents 75f76dc + 9edbab4 commit d740215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<button v-if='isInEditorPage' class='header-btn toggle-theme-icon' @click='store.toggleLightMode'>
{{ isLightModeSet ? '&#9790;' : '&#9788;' }}
</button>
<button class='download-readme-btn' @click='store.download'>Download</button>
<button v-if='isInEditorPage' class='download-readme-btn' @click='store.download'>Download</button>
<button class='header-btn'>
<a :href='repoGithubUri'>
<img class='github-img' src='@/assets/icons/github.svg' alt='Github icon'/>
Expand Down

0 comments on commit d740215

Please sign in to comment.