Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Typo in Input Selector: nubmer to number #45

Merged
merged 1 commit into from
Jul 1, 2024

Conversation

mjgil
Copy link
Contributor

@mjgil mjgil commented Jul 1, 2024

This pull request addresses a typo in the jQuery selector within ui.js. The typo was causing issues with selecting input elements of type number. Specifically, the selector was incorrectly written as input[type=nubmer] instead of input[type=number].

Changes Made:

Corrected the typo in the jQuery selector from $options.find('input[type=nubmer]') to $options.find('input[type=number]').
Impact:

This change ensures that the input event is properly bound to input elements of type number, allowing the updateBitMeter function to be called correctly when the input value changes.

Copy link
Owner

@quantum5 quantum5 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@quantum5 quantum5 merged commit 239a52d into quantum5:master Jul 1, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants