diff --git a/.changes/unreleased/Docs-20230307-104219.yaml b/.changes/unreleased/Docs-20230307-104219.yaml new file mode 100644 index 00000000..fd30c0ec --- /dev/null +++ b/.changes/unreleased/Docs-20230307-104219.yaml @@ -0,0 +1,6 @@ +kind: Docs +body: Distiguish access type in the DAG with node shape. +time: 2023-03-07T10:42:19.044231-06:00 +custom: + Author: emmyoop + Issue: "378" diff --git a/src/app/services/graph.service.js b/src/app/services/graph.service.js index 2200f0eb..6821e3ec 100644 --- a/src/app/services/graph.service.js +++ b/src/app/services/graph.service.js @@ -229,6 +229,18 @@ angular 'background-opacity': 0.5, } }, + { + selector: 'node[access="private"]', + style: { + 'shape': 'rectangle', + } + }, + { + selector: 'node[access="public"]', + style: { + 'shape': 'ellipse', + } + }, ], ready: function(e) { console.log("graph ready");