-
Notifications
You must be signed in to change notification settings - Fork 426
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
work with BigInt #779
Comments
Numbers are automatically casted using Lines 128 to 134 in e6f1887
I think we should apply a solution like that In the mean time best solution is probably to opt out of the params and use a regular data attribute |
I'm want to see here somethink like For now i will use your idea with regular data attribute. Thanks. |
Hello, I am having problems with BigInt used in action parameters.
For example:
<i class="message-edit" data-action="click->notes#editNote" data-notes-id-param="676280779033907854" data-notes-text-param="test text"></i>
if I check the parameters in action(
event.params
), I get:{ id: 676280779033907800, text: 'test text' }
so id now 676280779033907800 instead of 676280779033907854
How can we support BigInt here?
The text was updated successfully, but these errors were encountered: