Skip to content

Commit

Permalink
[Synthetics] Fixes action menu (#177408)
Browse files Browse the repository at this point in the history
closes #177413

## Summary

### Before
<img width="1728" alt="image"
src="https://github.com/elastic/kibana/assets/3505601/bdeaac40-894b-499a-a4e9-651ccb2051b7">


### After

<img width="1727" alt="image"
src="https://github.com/elastic/kibana/assets/3505601/94df1b77-f8c7-4659-8095-cfffdde5749c">

---------

Co-authored-by: Coen Warmer <coen.warmer@gmail.com>
  • Loading branch information
shahzad31 and CoenWarmer authored Feb 21, 2024
1 parent f66fa94 commit fdebc68
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@ export const ActionMenu = ({ appMountParameters }: { appMountParameters: AppMoun
<EuiFlexItem>
<ActionMenuContent />
</EuiFlexItem>
{ObservabilityAIAssistantActionMenuItem && (
<EuiFlexItem>
<ObservabilityAIAssistantActionMenuItem />
</EuiFlexItem>
)}
</EuiFlexGroup>
<EuiFlexItem>
{ObservabilityAIAssistantActionMenuItem ? <ObservabilityAIAssistantActionMenuItem /> : null}
</EuiFlexItem>
</HeaderMenuPortal>
);
};

0 comments on commit fdebc68

Please sign in to comment.