Skip to content

Commit

Permalink
disable connected objects fetching for Move packages (#1814)
Browse files Browse the repository at this point in the history
disable fetching child objects for move packages
  • Loading branch information
Stella Cannefax committed May 5, 2022
1 parent 7e2c043 commit 13d3331
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion explorer/client/src/pages/object-result/ObjectLoaded.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,10 @@ function ObjectLoaded({ data }: { data: DataType }) {
)}
</div>
)}
{showConnectedEntities && <OwnedObjects id={data.id} />}
{showConnectedEntities &&
data.objType !== 'Move Package' && (
<OwnedObjects id={data.id} />
)}
</div>
</div>
</>
Expand Down

0 comments on commit 13d3331

Please sign in to comment.