From 9ee41f0f149ed488202bdb2cf3ec17e3e859a35d Mon Sep 17 00:00:00 2001 From: niclas Date: Thu, 7 Mar 2024 09:47:43 +0100 Subject: [PATCH] Fix [relations] add uuid to header to get unique parent node --- tools/mkdocs/utils/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkdocs/utils/helper.py b/tools/mkdocs/utils/helper.py index 1d05705..498bd4b 100644 --- a/tools/mkdocs/utils/helper.py +++ b/tools/mkdocs/utils/helper.py @@ -69,7 +69,7 @@ def galaxy_transform_to_link(galaxy): def generate_relations_table(cluster): relationships = cluster.relationships - markdown = f"# {cluster.value} \n\n" + markdown = f"# {cluster.value} ({cluster.uuid}) \n\n" markdown += f"{cluster.description} \n\n" markdown += "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" markdown += "| --- | --- | --- | --- | --- |\n"