Skip to content

Commit f8c65af

Browse files
Fix missing first argument in call to setChildScope in BasePolysParentModel.
1 parent 6288cef commit f8c65af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coffee/directives/api/models/parent/base-polys-parent-model.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ angular.module('uiGmapgoogle-maps.directives.api.models.parent')
143143

144144
childScope.$watch 'model', (newValue, oldValue) =>
145145
if(newValue != oldValue)
146-
@setChildScope(childScope, newValue)
146+
@setChildScope(IPoly.scopeKeys, childScope, newValue)
147147
, true
148148

149149
childScope.static = @scope.static

0 commit comments

Comments
 (0)