Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 61c953d

Browse files
committed
fix(ng_mustache): actually assign to _hasObservers
1 parent 18ceb4d commit 61c953d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/core_dom/ng_mustache.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class NgAttrMustacheDirective {
5454

5555
attrs.listenObserverChanges(attrName, (hasObservers) {
5656
if (_hasObservers != hasObservers) {
57-
hasObservers = hasObservers;
57+
_hasObservers = hasObservers;
5858
if (_watch != null) _watch.remove();
5959
_watch = scope.watch(ast, interpolation.call, readOnly: !hasObservers);
6060
}

0 commit comments

Comments
 (0)