We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I do something like
[ant/table {:data-source [..]}
it doesn't work, while [ant/table {:dataSource [...]}] works as expected. Checking the code it looks like it should work really
[ant/table {:dataSource [...]}]
(ac/map-keys->camel-case {:data-source "hello"}) {"dataSource" "hello"}``` Any idea about what could be the issue?
The text was updated successfully, but these errors were encountered:
Actually the problem seems to be with all the table opts, also filterDropdownVisible has the same problem for example.
filterDropdownVisible
Sorry, something went wrong.
It's Reagent that does the case conversion here, and it ignores any keys that start with data-: https://github.com/reagent-project/reagent/blob/v0.8.1/src/reagent/impl/util.cljs#L32-L39
data-
No branches or pull requests
If I do something like
it doesn't work, while
[ant/table {:dataSource [...]}]
works as expected.Checking the code it looks like it should work really
The text was updated successfully, but these errors were encountered: