diff --git a/src/components/AmountInput/AmountInput.vue b/src/components/AmountInput/AmountInput.vue index 8d8f87aac..121d88857 100644 --- a/src/components/AmountInput/AmountInput.vue +++ b/src/components/AmountInput/AmountInput.vue @@ -12,6 +12,7 @@ @focus="isFocussed = true" @blur="isFocussed = false" @paste="$emit(AmountInputEvent.PASTE, $event)" + v-bind="$attrs" v-model="formattedValue" /> diff --git a/src/components/AmountWithFee/AmountWithFee.vue b/src/components/AmountWithFee/AmountWithFee.vue index 767a6bad8..5c36e847c 100644 --- a/src/components/AmountWithFee/AmountWithFee.vue +++ b/src/components/AmountWithFee/AmountWithFee.vue @@ -1,6 +1,6 @@ diff --git a/src/components/LongPressButton/LongPressButton.vue b/src/components/LongPressButton/LongPressButton.vue index 0377af0b7..323da96fd 100644 --- a/src/components/LongPressButton/LongPressButton.vue +++ b/src/components/LongPressButton/LongPressButton.vue @@ -8,6 +8,7 @@ @blur="isPressed = false /* if focus moves away, release the button */" @click.prevent.stop="$event.stopImmediatePropagation(); /* don't trigger handlers */" @submit.prevent.stop="$event.stopImmediatePropagation(); /* don't trigger handlers and default behavior */" + v-bind="$attrs" >