I'm using the kendo Upload component on Angular 6. The drag and drop is behaving a bit oddly in that I'm only able to drag and drop to a small portion of the dropzone. Is there an issue with using the upload within a dialog because when I use it elsewhere (not within a material dialog box) it performs normally and I can drop a file onto anywhere in the dropzone.
<kendo-upload
[autoUpload]="false"
(select) = "fileDropped($event)"
>
</kendo-upload>
is the code we're using, if there's anything else needed please tell me and I will provide it. Again the functionality works fine when not used within a dialog box, but as soon as it goes into a dialog it behaves differently.
Thanks