Skip to content

Commit

Permalink
[Fleet] Fix warning icon not displaying on 8.7
Browse files Browse the repository at this point in the history
With EUI v76, `warning` icon type was introduced: #152506

However, the EUI upgrade was only applied on 8.8. The callout here that uses the warning icon was backported to 8.7, where the EUI version does not have the `warning` icon type. Thus 8.7 should still use the legacy `alert` icon type.

This PR fixes that and will only be merged into 8.7.
  • Loading branch information
jen-huang authored Mar 31, 2023
1 parent 82c60a0 commit 922d8a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const ConfirmDescription: React.FunctionComponent<ConfirmDescriptionProps> = ({
<>
<EuiSpacer size="s" />
<EuiCallOut
iconType="warning"
iconType="alert"
color="warning"
size="m"
title={
Expand Down

0 comments on commit 922d8a5

Please sign in to comment.