You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having this issue after upgrading from version 1.4 to version 5
error NG8002: Can't bind to 'uploader' since it isn't a known property of 'div'.
<div (onFileDrop)="fileDrop()" [uploader]="uploader" class="uploadArea" ng2FileDrop>
The Module has been included:
import {FileUploadModule} from 'ng2-file-upload';
The Component:
@Component({
selector: 'app-wizard',
templateUrl: './wizard.component.html',
styleUrls: ['./wizard.component.scss'],
})
export class WizardComponent implements OnInit, OnDestroy {
@ViewChild('fileInput', { static: true }) fileInput: ElementRef;
@ViewChild('saveNetworkAsCode', { static: true }) saveNetworkAsCode;
// create an empty uploader until we have an actual URL
uploader: FileUploader;
...
Not sure whats going on, and not sure if I "migrated" correctly
The text was updated successfully, but these errors were encountered:
I am having this issue after upgrading from version 1.4 to version 5
The Module has been included:
import {FileUploadModule} from 'ng2-file-upload';
The Component:
Not sure whats going on, and not sure if I "migrated" correctly
The text was updated successfully, but these errors were encountered: