TP-85622 | Handle empty case overlay (#13145)
This commit is contained in:
@@ -20,7 +20,7 @@ class PopupReducer : BaseReducer<PopupState, PopupEvent> {
|
||||
previousState.copy(
|
||||
popupList = event.data,
|
||||
isCloseAllButtonVisible = true,
|
||||
isPopupListVisible = true,
|
||||
isPopupListVisible = event.popupListVisibilityState,
|
||||
)
|
||||
}
|
||||
is PopupEvent.DeletePopup -> {
|
||||
|
||||
@@ -126,7 +126,7 @@ constructor(
|
||||
lastViewedNudgeIds.addAll(updatedNudgeList.mapNotNull { it.nudgeId })
|
||||
}
|
||||
popupListData?.popupList?.let {
|
||||
sendEvent(PopupEvent.UpdatePopupData(it, popupListVisibilityState = true))
|
||||
sendEvent(PopupEvent.UpdatePopupData(it, popupListVisibilityState = it.isNotEmpty()))
|
||||
}
|
||||
selectiveRefreshHandler.handleSuccessState(
|
||||
this,
|
||||
|
||||
Reference in New Issue
Block a user