no changes on Confirmation Send in this PR

This commit is contained in:
Moriz Wahl 2022-03-31 21:25:47 +02:00
parent c6dcd29f67
commit d769096276

View File

@ -58,11 +58,7 @@
<b-button @click="$emit('on-reset')">{{ $t('form.cancel') }}</b-button>
</b-col>
<b-col class="text-right">
<b-button
variant="success"
:disabled="disabled"
@click="$emit('send-transaction'), (disabled = 'disabled')"
>
<b-button variant="success" :disabled="loading" @click="$emit('send-transaction')">
{{ $t('form.send_now') }}
</b-button>
</b-col>
@ -80,11 +76,6 @@ export default {
loading: { type: Boolean, required: true },
selected: { type: String, required: true },
},
data() {
return {
disabled: this.loading,
}
},
}
</script>
<style>