I'm trying to implement a dynamic tree using ng2-dragula. I'm using an ordered list for display purposes such as
<ol [dragula]='categories'>
<li>
Category One
<ol [dragula]='categories'>
<li>
Category 1.1
<li>
<li>
Category 1.2
<li>
</ol>
</li>
<li>
Category Two
</li>
<li>
Category Three
</li>
<ol>
Solution works fine when dragging up/down and to the left but I cannot drag to the right for example; I cannot drag "Category 1.2" to create "Category 1.1.1".
Hope I am making sense? What is the best way to create a nested "ol" element?
Many thanks