Skip to content

Commit

Permalink
fix: Resolved issue when setting custom fee rate
Browse files Browse the repository at this point in the history
  • Loading branch information
AricRedemption committed Mar 28, 2024
1 parent 3f87026 commit ea7a359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/wallet/components/BTCRateList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ watch(
class="flex flex-col items-center justify-center rounded-md border cursor-pointer aspect-square"
>
<div class="text-xs">{{ rate.title }}</div>
<div class="mt-1.5 text-sm ">{{ rate.feeRate }} sat/vB</div>
<div class="mt-1.5 text-sm">{{ rate.feeRate }} sat/vB</div>
<div class="mt-1 text-xs text-[#999999]">About</div>
<div class="text-xs text-[#999999]">{{ rate.desc.replace('About', '') }}</div>
</div>
Expand All @@ -63,7 +63,7 @@ watch(
v-if="isCustom"
placeholder="sat/vB"
class="main-input w-full rounded-xl p-4 text-xs mt-4"
@input="(e) => emit('update:currentRateFee', (e.currentTarget as HTMLInputElement).value)"
@input="(e) => emit('update:currentRateFee', Number((e.currentTarget as HTMLInputElement).value))"
/>
</div>
</template>

0 comments on commit ea7a359

Please sign in to comment.