Skip to content

Commit

Permalink
Merge pull request #22 from ag-computational-bio/fix/caret
Browse files Browse the repository at this point in the history
removed caret
  • Loading branch information
crsct committed Aug 30, 2023
2 parents 5c028eb + 463251a commit 0d75bf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Pane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const emits = defineEmits(["update:value"]);
<!-- Tabbed Navigation -->
<div class="shadow-sm p-4">
<ul class="nav nav-pills py-3">
<Panetab @click="$emit('update:value', item.id)" :tab="item" :active="activeItem == item.id" v-for="item in items" :key="item.id" />>
<Panetab @click="$emit('update:value', item.id)" :tab="item" :active="activeItem == item.id" v-for="item in items" :key="item.id" />
</ul>
<div class="tab-content">
<slot></slot>
Expand Down

0 comments on commit 0d75bf5

Please sign in to comment.