mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Fix z-index for exceptions (#147098)
Close: https://github.com/elastic/kibana/issues/147066
This commit is contained in:
parent
727df5e36b
commit
da793b7a3c
3 changed files with 3 additions and 0 deletions
|
@ -420,6 +420,7 @@ const ExceptionsViewerComponent = ({
|
|||
onConfirm={handleConfirmExceptionFlyout}
|
||||
data-test-subj="addExceptionItemFlyout"
|
||||
showAlertCloseOptions
|
||||
isNonTimeline={true}
|
||||
/>
|
||||
)}
|
||||
|
||||
|
|
|
@ -209,6 +209,7 @@ export const ExceptionsListCard = memo<ExceptionsListCardProps>(
|
|||
onConfirm={handleConfirmExceptionFlyout}
|
||||
data-test-subj="addExceptionItemFlyoutInSharedLists"
|
||||
showAlertCloseOptions={false}
|
||||
isNonTimeline={true}
|
||||
/>
|
||||
) : null}
|
||||
{showEditExceptionFlyout && exceptionToEdit ? (
|
||||
|
|
|
@ -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 ? (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue