Fix z-index for exceptions (#147098)

Close: https://github.com/elastic/kibana/issues/147066
This commit is contained in:
Khristinin Nikita 2022-12-06 15:09:58 +01:00 committed by GitHub
parent 727df5e36b
commit da793b7a3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View file

@ -420,6 +420,7 @@ const ExceptionsViewerComponent = ({
onConfirm={handleConfirmExceptionFlyout}
data-test-subj="addExceptionItemFlyout"
showAlertCloseOptions
isNonTimeline={true}
/>
)}

View file

@ -209,6 +209,7 @@ export const ExceptionsListCard = memo<ExceptionsListCardProps>(
onConfirm={handleConfirmExceptionFlyout}
data-test-subj="addExceptionItemFlyoutInSharedLists"
showAlertCloseOptions={false}
isNonTimeline={true}
/>
) : null}
{showEditExceptionFlyout && exceptionToEdit ? (

View file

@ -69,6 +69,7 @@ const ListWithSearchComponent: FC<ListWithSearchComponentProps> = ({
onConfirm={handleConfirmExceptionFlyout}
data-test-subj="addExceptionItemFlyoutInList"
showAlertCloseOptions={false} // TODO ask if we need it
isNonTimeline={true}
// ask if we need the add to rule/list section and which list should we link the exception here
/>
) : viewerStatus === ViewerStatus.EMPTY || viewerStatus === ViewerStatus.LOADING ? (