archgraph-argo 0.13.0 → 0.13.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -447,7 +447,12 @@ function syncGraphToQea(graph, qeaPath, opts) {
|
|
|
447
447
|
const end = elemIdByAliasAll.get(String(rel.target_id));
|
|
448
448
|
if (start === undefined || end === undefined) { continue; }
|
|
449
449
|
const map = relationshipMap(rel.type);
|
|
450
|
-
|
|
450
|
+
// Every ArchiMate relationship in the graph carries an explicit source->target
|
|
451
|
+
// orientation. Write an EA Direction unconditionally so the projected VIEW renders
|
|
452
|
+
// each relationship's arrowhead and the source/target orientation is never lost —
|
|
453
|
+
// an empty/Unspecified Direction renders Association-mapped connectors as arrowless
|
|
454
|
+
// lines (Serving/Assignment/Composition/Aggregation) which hides their direction.
|
|
455
|
+
const direction = 'Source -> Destination';
|
|
451
456
|
const existing = relByGuid.get(guid);
|
|
452
457
|
const intended = {
|
|
453
458
|
Name: safeName(rel.name, alias),
|
package/package.json
CHANGED