Skip to content

Commit

Permalink
resolve project tabs slider issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Machine-Maker committed Dec 20, 2021
1 parent 175bd73 commit f9fdece
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/components/projects/ProjectTabs.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<v-tabs>
<v-tab v-for="tab in tabs" :key="tab.title" :exact="!!tab.exact" :to="tab.external ? '/linkout?remoteUrl=' + tab.link : tab.link" nuxt>
<v-tab v-for="tab in tabs" :key="tab.title" :exact-path="!!tab.exact" :to="tab.external ? '/linkout?remoteUrl=' + tab.link : tab.link" nuxt>
<v-icon left>
{{ tab.icon }}
</v-icon>
{{ tab.title }}
<v-icon v-if="tab.external" small class="mb-1 ml-1" color="primary"> mdi-open-in-new</v-icon>
<v-icon v-if="tab.external" small class="mb-1 ml-1" color="primary">mdi-open-in-new</v-icon>
</v-tab>
</v-tabs>
</template>
Expand Down

0 comments on commit f9fdece

Please sign in to comment.