Skip to content

Commit

Permalink
check for undefined association (opensearch-project#1658)
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Li <[email protected]>
  • Loading branch information
sejli authored Mar 29, 2024
1 parent 52c8e2a commit 628f3fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const AssociatedObjectsTable = (props: AssociatedObjectsTableProps) => {
View all {accelerations.length}
</EuiLink>
);
} else {
} else if (accelerations) {
return (
<EuiLink
onClick={() =>
Expand Down

0 comments on commit 628f3fd

Please sign in to comment.