forked from lix-project/hydra
Don't generate clashing IDs
This commit is contained in:
parent
d1e983dfc6
commit
b5273eed7a
|
@ -1,5 +1,7 @@
|
|||
[% PROCESS deps.tt %]
|
||||
|
||||
[% global.nodeId = 10000 %]
|
||||
|
||||
<div class="dep-tree">
|
||||
<ul class="tree">
|
||||
[% INCLUDE renderNode node=buildTimeGraph %]
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
[% PROCESS common.tt %]
|
||||
|
||||
[% global.nodeId = 1 %]
|
||||
|
||||
[% BLOCK renderNode %]
|
||||
<li>
|
||||
[% IF done.${node.path} %]
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
[% PROCESS deps.tt %]
|
||||
|
||||
[% global.nodeId = 1 %]
|
||||
|
||||
<div class="dep-tree">
|
||||
<ul class="tree">
|
||||
[% FOREACH node IN runtimeGraph; INCLUDE renderNode; END %]
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue