Skip to content

Commit

Permalink
fix: disabled scrolling on input (#1286)
Browse files Browse the repository at this point in the history
  • Loading branch information
impelcrypto committed May 15, 2024
1 parent 4256401 commit d639606
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/assets/transfer/LocalTransfer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
placeholder="0"
class="input--amount input--no-spin"
@input="inputHandler"
@wheel="(e) => e.preventDefault()"
/>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/assets/transfer/XcmBridge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
placeholder="0"
class="input--amount input--no-spin"
@input="inputHandler"
@wheel="(e) => e.preventDefault()"
/>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/bridge/ethereum/L1Bridge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
placeholder="0"
class="input--amount input--no-spin"
@input="(e) => inputHandler(e)"
@wheel="(e) => e.preventDefault()"
/>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
placeholder="0"
class="input--amount input--no-spin"
@input="inputHandler"
@wheel="(e) => e.preventDefault()"
/>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/dapp-staking/stake-manage/StakeForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
placeholder="0"
class="input--amount input--no-spin"
@input="inputHandler"
@wheel="(e) => e.preventDefault()"
/>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/staking-v3/components/Amount.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
placeholder="0"
class="input--amount input--no-spin"
@input="handleInputAmount"
@wheel="(e) => e.preventDefault()"
/>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/staking-v3/components/my-staking/ModalUnbondDapp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
placeholder="0"
class="input--amount input--no-spin"
@input="inputHandler"
@wheel="(e) => e.preventDefault()"
/>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/staking-v3/components/my-staking/ModalUnlockTokens.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
placeholder="0"
class="input--amount input--no-spin"
@input="inputHandler"
@wheel="(e) => e.preventDefault()"
/>
</div>
</div>
Expand Down

0 comments on commit d639606

Please sign in to comment.