mirror of
https://github.com/MISP/misp-galaxy.git
synced 2025-01-19 02:56:16 +00:00
Merge pull request #943 from NMD03/main
Fix [relations] add uuid to header to get unique parent node
This commit is contained in:
commit
3af51c5e0c
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ def galaxy_transform_to_link(galaxy):
|
||||||
|
|
||||||
def generate_relations_table(cluster):
|
def generate_relations_table(cluster):
|
||||||
relationships = cluster.relationships
|
relationships = cluster.relationships
|
||||||
markdown = f"# {cluster.value} \n\n"
|
markdown = f"# {cluster.value} ({cluster.uuid}) \n\n"
|
||||||
markdown += f"{cluster.description} \n\n"
|
markdown += f"{cluster.description} \n\n"
|
||||||
markdown += "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n"
|
markdown += "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n"
|
||||||
markdown += "| --- | --- | --- | --- | --- |\n"
|
markdown += "| --- | --- | --- | --- | --- |\n"
|
||||||
|
|
Loading…
Add table
Reference in a new issue