fix(graph): project edge tooltips should appear (#13344)

This commit is contained in:
Philip Fulcher 2022-11-23 07:41:22 -07:00 committed by GitHub
parent a2cf352433
commit 2d758af7c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ export class ProjectEdge {
type: this.dep.type,
},
};
edge.classes = this.dep.type ?? '';
edge.classes += ` ${this.dep.type}` ?? '';
if (this.affected) {
edge.classes += ' affected';
}