diff --git a/libs/shared/lib/vis/visualizations/nodelinkvis/components/NLMachineLearning.tsx b/libs/shared/lib/vis/visualizations/nodelinkvis/components/NLMachineLearning.tsx
index 19c50b62913aa5d8551f7f57e2714792d2ca3946..7ffc49974198a52eebccb49ded91fc989d92e957 100644
--- a/libs/shared/lib/vis/visualizations/nodelinkvis/components/NLMachineLearning.tsx
+++ b/libs/shared/lib/vis/visualizations/nodelinkvis/components/NLMachineLearning.tsx
@@ -11,6 +11,7 @@ export function processLinkPrediction(ml: ML, graph: GraphType): GraphType {
       if (allNodeIds.has(link.from) && allNodeIds.has(link.to)) {
         const toAdd: LinkType = {
           id: link.from + ':LP:' + link.to, // TODO: this only supports one link between two nodes
+          name: 'Link Prediction',
           source: link.from,
           target: link.to,
           value: link.attributes.jaccard_coefficient as number,