Skip to content

Commit

Permalink
Disable cancel when updating fee
Browse files Browse the repository at this point in the history
  • Loading branch information
monokh committed Sep 3, 2020
1 parent 5773445 commit c3411fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/TransactionDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<a href="javascript:void(0)" @click="newFeePrice = feeSelectorFees.fast.fee">Fast: {{ feeSelectorFees.fast.fee }}</a>
</div>
<div>
<button class="btn btn-sm btn-outline-primary" @click="closeFeeSelector()">Cancel</button>
<button class="btn btn-sm btn-outline-primary" v-if="!feeSelectorLoading" @click="closeFeeSelector()">Cancel</button>
<button class="btn btn-sm btn-primary btn-icon" :disabled="feeSelectorLoading" @click="updateFee(step.tx.asset, step.tx.hash)">
<SpinnerIcon class="btn-loading" v-if="feeSelectorLoading" />
<template v-else>Update</template>
Expand Down

0 comments on commit c3411fc

Please sign in to comment.