Skip to content

Commit

Permalink
fix: various BountyPanel bugs (#1156)
Browse files Browse the repository at this point in the history
  • Loading branch information
HKayn authored Feb 1, 2024
1 parent 82aab4b commit 92550e3
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions components/panels/BountyPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
>
<template #cell(type)="data">
<div>
<div size="sm" class="ml-2 pull-left" @click="data.toggleDetails">
<div size="sm" class="ml-2 pull-left">
<i v-if="data.detailsShowing" class="fas fa-chevron-down"></i>
<i v-else class="fas fa-chevron-right"></i>
</div>
Expand All @@ -33,12 +33,6 @@
<template #cell(standing)="row">
{{ row.item.standing }}
</template>
<template #cell(moreinfo)="row">
<div size="sm" class="mr-2" @click="row.toggleDetails">
<i v-if="row.detailsShowing" class="fas fa-chevron-down"></i>
<i v-else class="fas fa-chevron-right"></i>
</div>
</template>
<template #row-details="row">
<span>
<b-badge v-for="(reward, index) in row.item.rewards" :key="`reward-${type}-${index}`">{{
Expand Down Expand Up @@ -161,5 +155,6 @@ export default {
}
.table {
margin-bottom: 0.5em;
user-select: none;
}
</style>

0 comments on commit 92550e3

Please sign in to comment.