Skip to content

Commit

Permalink
removed caret
Browse files Browse the repository at this point in the history
  • Loading branch information
crsct committed Aug 30, 2023
1 parent 5c028eb commit 463251a
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 463251a

Please sign in to comment.