Skip to content

Commit

Permalink
[Fleet] Fix connector links not visible in agentless flyout (elastic#…
Browse files Browse the repository at this point in the history
…208068)

Follow up of elastic#203824

## Summary
This is a small bugfix for connectors not visible in agentless flyout.

## Testing

- Follow the steps here elastic#203824
- Install elastic-connectors integration
`app/fleet/integrations/elastic_connectors-1.0.0/add-integration` and
enroll an agent to it
- The enabled connectors should be visible in the flyout

<img width="870" alt="Screenshot 2025-01-23 at 15 28 20"
src="https://github.com/user-attachments/assets/19cdcbc4-68d5-4e44-875e-15cd849ab84b"
/>
  • Loading branch information
criamico authored and qn895 committed Jan 23, 2025
1 parent 83b3e9b commit 277bdfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const NextSteps = ({
return (
<>
<EuiSpacer size="m" />
{nextStepsCards.length > 0 && (
{(nextStepsCards.length > 0 || connectorCards.length > 0) && (
<EuiFlexGroup alignItems="center" direction="row" wrap={true}>
{nextStepsCards}
{connectorCards}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const AgentlessStepConfirmData = ({
<p>
<FormattedMessage
id="xpack.fleet.agentlessEnrollmentFlyout.confirmData.failureHelperText"
defaultMessage="No integration data receieved in the past {num} minutes. Check out the {troubleshootingGuideLink} for help."
defaultMessage="No integration data received in the past {num} minutes. Check out the {troubleshootingGuideLink} for help."
values={{
num: POLLING_TIMEOUT_MS / 1000 / 60,
troubleshootingGuideLink: (
Expand Down

0 comments on commit 277bdfa

Please sign in to comment.