diff --git a/app/components/Workflow/DependencyGraph/CustomNodes/Code/CodeNode.js b/app/components/Workflow/DependencyGraph/CustomNodes/Code/CodeNode.js index f0efeb3..f8c38ed 100644 --- a/app/components/Workflow/DependencyGraph/CustomNodes/Code/CodeNode.js +++ b/app/components/Workflow/DependencyGraph/CustomNodes/Code/CodeNode.js @@ -30,6 +30,8 @@ function CodeNode({ node, renderType }) { iconUrl = ICON_TYPES.SAS; } else if (node.assetType === 'stata') { iconUrl = ICON_TYPES.STATA; + } else if (node.assetType === 'java') { + iconUrl = ICON_TYPES.JAVA; } else if (node.assetType === 'dependency') { iconUrl = ICON_TYPES.LIBRARY; } else if (node.assetType === 'go') { diff --git a/app/components/Workflow/DependencyGraph/DependencyGraphEChart.js b/app/components/Workflow/DependencyGraph/DependencyGraphEChart.js index 61233c9..802151f 100644 --- a/app/components/Workflow/DependencyGraph/DependencyGraphEChart.js +++ b/app/components/Workflow/DependencyGraph/DependencyGraphEChart.js @@ -37,6 +37,8 @@ function getIcon(node) { iconUrl = ICON_TYPES.SAS; } else if (node.value === 'stata') { iconUrl = ICON_TYPES.STATA; + } else if (node.value === 'java') { + iconUrl = ICON_TYPES.JAVA; } else if (node.value === 'dependency') { iconUrl = ICON_TYPES.LIBRARY; } else if (node.value === 'go') { diff --git a/app/images/java.svg b/app/images/java.svg new file mode 100644 index 0000000..0a1d2d5 --- /dev/null +++ b/app/images/java.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file