I've ParentDirective
inside it I've ChildDirective
, I defined array in the scope of the ParentDirective
, and it's bound the view of the ChildDirective
, but I notice that when I debugged the code, that the debugger reached to the link
of the ChildDirective
before the link
of the ParentDirective
, and it cause that it don't display anything in the view.
How can I fixed it?