@elderbyte/ngx-starter 19.1.0 → 19.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10933,6 +10933,12 @@ class FileListingRx {
|
|
|
10933
10933
|
})),
|
|
10934
10934
|
]);
|
|
10935
10935
|
}
|
|
10936
|
+
if (transferItem.kind == 'string') {
|
|
10937
|
+
const string$ = new BehaviorSubject(null);
|
|
10938
|
+
transferItem.getAsString((string) => string$.next(string));
|
|
10939
|
+
string$.subscribe({ next: (log) => this.log.warn('DataTransferItem was string: ', log) });
|
|
10940
|
+
return of([]);
|
|
10941
|
+
}
|
|
10936
10942
|
else {
|
|
10937
10943
|
this.log.warn('Could not handle DataTransferItem!', transferItem);
|
|
10938
10944
|
return of([]);
|