Skip to content

Commit

Permalink
Supports empty case for readonly view on rule create
Browse files Browse the repository at this point in the history
  • Loading branch information
spong committed May 23, 2022
1 parent b38c920 commit 17ede9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const RelatedIntegrationsDescription: React.FC<{ integrations: RelatedIntegratio
integrations,
}) => (
<>
{integrations.map((integration, index) => (
{integrations?.map((integration, index) => (
<IntegrationDescription key={`${integration.package}-${index}`} integration={integration} />
))}
</>
Expand Down

0 comments on commit 17ede9c

Please sign in to comment.