mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
pre angular 15 cleanup (#8961)
* pre angular 15 cleanup * [ci:force] update test * [ci:force] various updates as per migration * [ci:force] port more changes * [ci:force] migrate tests * [ci:force] migrate formatting * migrate changes * rollback storybook
This commit is contained in:
@@ -104,9 +104,9 @@ export class FileUploadingDialogComponent implements OnInit, OnDestroy {
|
||||
|
||||
if (this.filesUploadingList.length && !this.isDialogActive) {
|
||||
this.isDialogActive = true;
|
||||
this.dialogActive.next();
|
||||
this.dialogActive.next(undefined);
|
||||
} else {
|
||||
this.dialogActive.next();
|
||||
this.dialogActive.next(undefined);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -159,7 +159,7 @@ export class FileUploadingDialogComponent implements OnInit, OnDestroy {
|
||||
this.isConfirmation = !this.isConfirmation;
|
||||
|
||||
if (!this.isConfirmation) {
|
||||
this.dialogActive.next();
|
||||
this.dialogActive.next(undefined);
|
||||
}
|
||||
|
||||
if (this.isDialogMinimized) {
|
||||
@@ -172,7 +172,7 @@ export class FileUploadingDialogComponent implements OnInit, OnDestroy {
|
||||
*/
|
||||
cancelAllUploads() {
|
||||
this.toggleConfirmation();
|
||||
this.dialogActive.next();
|
||||
this.dialogActive.next(undefined);
|
||||
this.uploadList.cancelAllFiles();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user