[AAE-6294] The list should be refreshed without allowing a used to se… (#2629)

* [AAE-6294] The list should be refreshed without allowing a used to select the same folder already deleted

* Changes done as per comment

* resolved build fails
This commit is contained in:
Sushmitha V
2022-09-12 14:24:19 +02:00
committed by GitHub
parent e173eedb42
commit 49e48abf3a
11 changed files with 51 additions and 9 deletions
@@ -42,5 +42,6 @@ export enum AppActionTypes {
CloseModalDialogs = 'CLOSE_MODAL_DIALOGS',
SetFileUploadingDialog = 'SET_FILE_UPLOADING_DIALOG',
ShowInfoDrawerPreview = 'SHOW_INFO_DRAWER_PREVIEW',
SetInfoDrawerPreviewState = 'SET_INFO_DRAWER_PREVIEW_STATE'
SetInfoDrawerPreviewState = 'SET_INFO_DRAWER_PREVIEW_STATE',
ShowLoaderAction = 'SHOW_LOADER'
}
@@ -125,3 +125,9 @@ export class SetInfoDrawerPreviewStateAction implements Action {
constructor(public payload: boolean) {}
}
export class ShowLoaderAction implements Action {
readonly type = AppActionTypes.ShowLoaderAction;
constructor(public payload: boolean) {}
}