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

[bug] ghost, chosen and dragClass do not work with css modules (but i found a fix) #212

Open
gregg-cbs opened this issue Apr 20, 2021 · 0 comments

Comments

@gregg-cbs
Copy link

Describe the bug
In nextJS we have been forced to use css modules as a means to style things which introduces one huge caveat, css does not work the conventional way, you have to apply the class to an html element up front otherwise the class is not included in the bundle.

This looks like so:

<ReactSortable 
chosenClass={style.categoryItemChosen}

In nextJS i cannot do this:

<ReactSortable 
chosenClass="categoryItemChosen"

But i have found that this works:

<ReactSortable 
chosenClass={`${styles.categoryItemChosen}`}

Maybe this is worth mentioning somewhere in the documentation?

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

No branches or pull requests

1 participant