Skip to content

Commit

Permalink
fix(footer): remove version labels
Browse files Browse the repository at this point in the history
  • Loading branch information
shadow81627 committed Jan 27, 2020
2 parents a407997 + 5b1b1c9 commit cda353f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/layout/the-footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<v-col cols="auto">
<v-card flat color="transparent">
<v-card-text>
<span>Version: {{ version }}</span>
<span>|</span>
<span>Commit: </span>
<nuxt-link to="releases">
<span> {{ commit | shortHash }}</span>
<span>{{ version }}</span>
<span v-if="commit">{{ commit | shortHash }}</span>
<span v-if="version && commit">|</span>
<nuxt-link :to="localePath('releases')">
<span>Changelog</span>
</nuxt-link>
</v-card-text>
</v-card>
Expand Down

1 comment on commit cda353f

@vercel
Copy link

@vercel vercel bot commented on cda353f Jan 27, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.