I want to include or not a directive in my div depending on a boolean value, but I can't find how to do it.
The directive is dnd-sortable-container for ng2-dnd library:
<div ng-dnd-sortable-container="booleanValue ? true : null"> //html
booleanValue: boolean //ts
but it does nothing.
how can I do it?