Skip to content

Commit

Permalink
chore(odd-platform-up): switch places of target and source (#1640)
Browse files Browse the repository at this point in the history
  • Loading branch information
anatolii-yemets committed Apr 1, 2024
1 parent ff4d039 commit 0a2895b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const OverviewEntityRelationship: React.FC<OverviewEntityRelationshipProps> = ({
alignItems='flex-start'
sx={{ mt: 1 }}
>
{sources?.slice(0, displayedEntitiesNumber).map(target => (
{targets?.slice(0, displayedEntitiesNumber).map(target => (
<AppTooltip
key={target.oddrn}
title={<S.Tooltip>{target.oddrn}</S.Tooltip>}
Expand Down Expand Up @@ -166,7 +166,7 @@ const OverviewEntityRelationship: React.FC<OverviewEntityRelationshipProps> = ({
alignItems='flex-start'
sx={{ mt: 1 }}
>
{targets?.slice(0, displayedEntitiesNumber).map(target => (
{sources?.slice(0, displayedEntitiesNumber).map(target => (
<AppTooltip
key={target.oddrn}
title={<S.Tooltip>{target.oddrn}</S.Tooltip>}
Expand Down

0 comments on commit 0a2895b

Please sign in to comment.