Fixing pills when drag and drop
parent
b0395724ed
commit
fffc140898
|
@ -22,8 +22,9 @@ module = angular.module('taigaEpics')
|
||||||
BelongToEpicsDirective = () ->
|
BelongToEpicsDirective = () ->
|
||||||
|
|
||||||
link = (scope, el, attrs) ->
|
link = (scope, el, attrs) ->
|
||||||
if scope.epics && !scope.epics.isIterable
|
scope.$watch 'epics', (epics) ->
|
||||||
scope.epics = Immutable.fromJS(scope.epics)
|
if epics && !epics.isIterable
|
||||||
|
scope.epics = Immutable.fromJS(epics)
|
||||||
|
|
||||||
templateUrl = (el, attrs) ->
|
templateUrl = (el, attrs) ->
|
||||||
if attrs.format
|
if attrs.format
|
||||||
|
|
Loading…
Reference in New Issue