this renders two div.uppy-Root inside the div#some-id is there a way to additional css classes or id to the root element so that I can differentiate between the two?
Hi, not sure what you mean by “differentiate between the two”, do you mean in a CSS selector? I don’t think adding a class would help, you should be able to do it already.
#some-id > .uppy-Root {
/* this applies only to the inner <div> */
}
#some-id {
/* this applies only to the outer <div> */
}