Skip to content

Commit

Permalink
Merge pull request #1746 from upalatucci/crash-on-delete-modal-loading
Browse files Browse the repository at this point in the history
Crash on delete moal loading
  • Loading branch information
openshift-merge-bot[bot] committed Jan 24, 2024
2 parents 74d78b9 + 0372a2f commit 872602a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ export const findPVCOwner = (
resources: K8sResourceCommon[],
) =>
resources.find((resource) =>
pvc?.metadata?.ownerReferences.find((owner) => owner.uid === resource.metadata.uid),
pvc?.metadata?.ownerReferences?.find((owner) => owner.uid === resource.metadata.uid),
);

0 comments on commit 872602a

Please sign in to comment.