Reputation: 51
All the dropzones that I'm using in my project stoped working from nothing. I tried to go to in the past few weeks commits and check if was something new in the project, but seems like Angular just dont reconize the component.
Does anyone knows how to fix it?
Thanks a lot!
Upvotes: 0
Views: 1901
Reputation: 41
on angular 13 what worked for me was, after uninstall
npm i dropzone@5
npm i ngx-dropzone-wrapper@10
Upvotes: 2
Reputation: 51
Solved. Just uninstall the following two packages:
npm uninstall ngx-dropzone-wrapper
npm uninstall dropzone*
And then install these packages in the newest version:
npm i dropzone
npm i ngx-dropzone-wrapper
Upvotes: 4