mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-19 07:19:41 +02:00
Tmp removal of edge id handling
This commit is contained in:
@@ -940,9 +940,10 @@ export const getEdgeId = (
|
|||||||
},
|
},
|
||||||
id?: string
|
id?: string
|
||||||
) => {
|
) => {
|
||||||
if (id) {
|
// if (id) {
|
||||||
return id;
|
// return id;
|
||||||
}
|
// }
|
||||||
|
log.debug('Disabled addition of id:', id);
|
||||||
return `${prefix ? `${prefix}_` : ''}${from}_${to}_${counter}${suffix ? `_${suffix}` : ''}`;
|
return `${prefix ? `${prefix}_` : ''}${from}_${to}_${counter}${suffix ? `_${suffix}` : ''}`;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user